소스 검색

[DependencyInjection] fixed typo

Fabien Potencier 15 년 전
부모
커밋
8ed83f7035
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tests/unit/Symfony/Components/DependencyInjection/ContainerTest.php

+ 1 - 1
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)
 {