From 22c1aa3636f4eaa4b606d0d76e555aeaf2994a0b Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 6 Mar 2013 17:55:57 +0100 Subject: [PATCH] fixed typo --- .../DependencyInjection/Tests/ContainerBuilderTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/DependencyInjection/Tests/ContainerBuilderTest.php b/src/Symfony/Component/DependencyInjection/Tests/ContainerBuilderTest.php index 48dd10acf5..58ae5f65f6 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/ContainerBuilderTest.php +++ b/src/Symfony/Component/DependencyInjection/Tests/ContainerBuilderTest.php @@ -122,7 +122,7 @@ class ContainerBuilderTest extends \PHPUnit_Framework_TestCase * @expectedException \Symfony\Component\DependencyInjection\Exception\RuntimeException * @expectedExceptionMessage You have requested a synthetic service ("foo"). The DIC does not know how to construct this service. */ - public function testGetXXX() + public function testGetUnsetLoadingServiceWhenCreateServiceThrowsAnException() { $builder = new ContainerBuilder(); $builder->register('foo', 'stdClass')->setSynthetic(true);