Skip to content

Commit cfcd82e

Browse files
committed
Fixes variable export for Windows.
Issue: https://github.com/laravel/laravel/issues/1870 Fix in commit 678b92e does not work. Signed-off-by: aeberhardo <aeberhard@gmx.ch>
1 parent 678b92e commit cfcd82e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

laravel/cli/tasks/test/runner.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ protected function test()
8989
$esc_path = escapeshellarg($path);
9090

9191
putenv('LARAVEL_ENV='.Request::env());
92-
passthru('LARAVEL_ENV='.Request::env().' phpunit --configuration '.$esc_path, $status);
92+
passthru('phpunit --configuration '.$esc_path, $status);
9393

9494
@unlink($path);
9595

0 commit comments

Comments
 (0)