Skip to content

Commit 9e397c9

Browse files
committed
MAGETWO-65260: [GitHub][PR] Fixed Issue #8425 #8678
- Merge Pull Request #8678 from DavidLambauer/magento2:patch-2
2 parents 84d382b + 9c7b197 commit 9e397c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Developer/Console/Command/DevTestsRunCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
8686
list($dir, $options) = $this->commands[$key];
8787
$dirName = realpath(BP . '/dev/tests/' . $dir);
8888
chdir($dirName);
89-
$command = 'php '. BP . '/' . $vendorDir . '/phpunit/phpunit/phpunit ' . $options;
89+
$command = PHP_BINARY . ' ' . BP . '/' . $vendorDir . '/phpunit/phpunit/phpunit ' . $options;
9090
$message = $dirName . '> ' . $command;
9191
$output->writeln(['', str_pad("---- {$message} ", 70, '-'), '']);
9292
passthru($command, $returnVal);

0 commit comments

Comments
 (0)