Skip to content

Commit

Permalink
Fix currently broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mpdude authored and fabpot committed Apr 4, 2015
1 parent 7adba99 commit 1122160
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Symfony/Component/Console/Tester/CommandTester.php
Expand Up @@ -61,7 +61,7 @@ public function execute(array $input, array $options = array())
&& (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);
Expand Down

0 comments on commit 1122160

Please sign in to comment.