8000 Merge branch '2.6' into 2.7 · symfony/symfony@33ff623 · GitHub
[go: up one dir, main page]

Skip to content

Commit 33ff623

Browse files
committed
Merge branch '2.6' into 2.7
* 2.6: Fix currently broken tests
2 parents fb514b6 + c29f779 commit 33ff623

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Console/Tester/CommandTester.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function execute(array $input, array $options = array())
6161
&& (null !== $application = $this->command->getApplication())
6262
&& $application->getDefinition()->hasArgument('command')
6363
) {
64-
$input['command'] = $this->command->getName();
64+
$input = array_merge(array('command' => $this->command->getName()), $input);
6565
}
6666

6767
$this->input = new ArrayInput($input);

0 commit comments

Comments
 (0)
0