Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / symfony / dependency-injection / Tests / ReferenceTest.php
index ec0803fa3b8b27026e4724f5283af8692df5ea39..1fc274a2922e7d428a0d1a59abcc634b3fbcc511 100644 (file)
@@ -21,10 +21,4 @@ class ReferenceTest extends TestCase
         $ref = new Reference('foo');
         $this->assertEquals('foo', (string) $ref, '__construct() sets the id of the reference, which is used for the __toString() method');
     }
-
-    public function testCaseInsensitive()
-    {
-        $ref = new Reference('FooBar');
-        $this->assertEquals('foobar', (string) $ref, 'the id is lowercased as the container is case insensitive');
-    }
 }