X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fsymfony%2Fdependency-injection%2FTests%2FReferenceTest.php;fp=vendor%2Fsymfony%2Fdependency-injection%2FTests%2FReferenceTest.php;h=1fc274a2922e7d428a0d1a59abcc634b3fbcc511;hp=ec0803fa3b8b27026e4724f5283af8692df5ea39;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/symfony/dependency-injection/Tests/ReferenceTest.php b/vendor/symfony/dependency-injection/Tests/ReferenceTest.php index ec0803fa3..1fc274a29 100644 --- a/vendor/symfony/dependency-injection/Tests/ReferenceTest.php +++ b/vendor/symfony/dependency-injection/Tests/ReferenceTest.php @@ -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'); - } }