From 4c1b66c6deabcb2fd4fe336679316b9ca8b0410f Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Mon, 30 Sep 2019 16:33:22 +0200 Subject: [PATCH] remove duplicated test --- .../Component/Console/Tests/ApplicationTest.php | 10 ---------- 1 file changed, 10 deletions(-) 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();