fixed previous merge

This commit is contained in:
Fabien Potencier 2013-04-17 07:37:48 +02:00
parent 1b2619078d
commit 6a2c71bad5
1 changed files with 0 additions and 2 deletions

View File

@ -227,8 +227,6 @@ class ArgvInputTest extends \PHPUnit_Framework_TestCase
new InputOption('anotherOption', null, InputOption::VALUE_NONE),
)));
$this->assertSame(array('name' => array('foo', 'bar', null), 'anotherOption' => true), $input->getOptions(), '->parse() parses empty array options as null ("--option value" syntax)');
$this->assertEquals(array('name' => array('foo', 'bar', 'baz')), $input->getOptions());
}
public function testParseNegativeNumberAfterDoubleDash()