Skip to content

Commit 6a1d203

Browse files
committed
Merge pull request #1994 from aeberhardo/bug/putenv
Fixes variable export for Windows.
2 parents 37acc99 + cfcd82e commit 6a1d203

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)