diff --git a/src/Symfony/Component/Console/Tests/ApplicationTest.php b/src/Symfony/Component/Console/Tests/ApplicationTest.php index e750975d2d..dd30a95741 100644 --- a/src/Symfony/Component/Console/Tests/ApplicationTest.php +++ b/src/Symfony/Component/Console/Tests/ApplicationTest.php @@ -752,16 +752,6 @@ class ApplicationTest extends TestCase ]; } - public function testFindAmbiguousCommandsIfAllAlternativesAreHidden() - { - $application = new Application(); - - $application->add(new \FooCommand()); - $application->add(new \FooHiddenCommand()); - - $this->assertInstanceOf('FooCommand', $application->find('foo:')); - } - public function testSetCatchExceptions() { $application = new Application();