From cfcd82e04aaf035476bd52fab8c5bc02ecb20a3b Mon Sep 17 00:00:00 2001 From: aeberhardo Date: Wed, 15 May 2013 19:05:04 +0200 Subject: [PATCH] Fixes variable export for Windows. Issue: https://github.com/laravel/laravel/issues/1870 Fix in commit https://github.com/laravel/laravel/commit/678b92ef85ce0258eb9a6ac57bb26fca9480e430 does not work. Signed-off-by: aeberhardo --- laravel/cli/tasks/test/runner.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/cli/tasks/test/runner.php b/laravel/cli/tasks/test/runner.php index 7b18b845fcf..60575bf5c8f 100644 --- a/laravel/cli/tasks/test/runner.php +++ b/laravel/cli/tasks/test/runner.php @@ -89,7 +89,7 @@ protected function test() $esc_path = escapeshellarg($path); putenv('LARAVEL_ENV='.Request::env()); - passthru('LARAVEL_ENV='.Request::env().' phpunit --configuration '.$esc_path, $status); + passthru('phpunit --configuration '.$esc_path, $status); @unlink($path);