removed extra-verbose comments

This commit is contained in:
Fabien Potencier 2018-02-16 06:42:51 +01:00
parent 9d3d237f18
commit 800cadfb82
1 changed files with 2 additions and 4 deletions

View File

@ -341,14 +341,12 @@ class ArgvInputTest extends TestCase
{
$input = new ArgvInput(array('cli.php', '-edev'));
// Control.
$this->assertTrue($input->hasParameterOption(array('-e', '')));
// No warning is thrown if https://github.com/symfony/symfony/pull/26156 is fixed
// No warning thrown
$this->assertFalse($input->hasParameterOption(array('-m', '')));
// Control.
$this->assertEquals('dev', $input->getParameterOption(array('-e', '')));
// No warning is thrown if https://github.com/symfony/symfony/pull/26156 is fixed
// No warning thrown
$this->assertFalse($input->getParameterOption(array('-m', '')));
}