Fix currently broken tests

This commit is contained in:
Matthias Pigulla 2015-04-03 22:48:09 +02:00 committed by Fabien Potencier
parent 7adba99975
commit 1122160d9e

View File

@ -61,7 +61,7 @@ class CommandTester
&& (null !== $application = $this->command->getApplication())
&& $application->getDefinition()->hasArgument('command')
) {
$input['command'] = $this->command->getName();
$input = array_merge(array('command' => $this->command->getName()), $input);
}
$this->input = new ArrayInput($input);