From 8ed83f703562421b2ea2999c99ea877a754e700b Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 27 Jan 2010 13:33:15 +0100 Subject: [PATCH] [DependencyInjection] fixed typo --- .../Symfony/Components/DependencyInjection/ContainerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/Symfony/Components/DependencyInjection/ContainerTest.php b/tests/unit/Symfony/Components/DependencyInjection/ContainerTest.php index b4033c907a..921d93cada 100644 --- a/tests/unit/Symfony/Components/DependencyInjection/ContainerTest.php +++ b/tests/unit/Symfony/Components/DependencyInjection/ContainerTest.php @@ -216,7 +216,7 @@ $t->is($sc->getFooBar_FooService(), $foo, '__call() finds services is the method try { $sc->getFooBar_Foo(); - $t->pass('__call() throws a \RuntimeException exception if the method is not a service method'); + $t->fail('__call() throws a \RuntimeException exception if the method is not a service method'); } catch (\RuntimeException $e) {