Skip to content

Commit 84ca41a

Browse files
committed
removed extra-verbose comments
1 parent 8efb1d4 commit 84ca41a

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Tests/Input/ArgvInputTest.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -341,14 +341,12 @@ public function testNoWarningOnInvalidParameterOption()
341341
{
342342
$input = new ArgvInput(array('cli.php', '-edev'));
343343

344-
// Control.
345344
$this->assertTrue($input->hasParameterOption(array('-e', '')));
346-
// No warning is thrown if https://github.com/symfony/symfony/pull/26156 is fixed
345+
// No warning thrown
347346
$this->assertFalse($input->hasParameterOption(array('-m', '')));
348347

349-
// Control.
350348
$this->assertEquals('dev', $input->getParameterOption(array('-e', '')));
351-
// No warning is thrown if https://github.com/symfony/symfony/pull/26156 is fixed
349+
// No warning thrown
352350
$this->assertFalse($input->getParameterOption(array('-m', '')));
353351
}
354352

0 commit comments

Comments
 (0)