From 6d23c4f5c6db7ef62ba8d3b183e92d43991ab431 Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Fri, 13 Jul 2012 00:21:18 +0300 Subject: [PATCH] Fix missing semicolon in laravel/cli/test/runner.php. --- 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 953c9857..937046d8 100644 --- a/laravel/cli/tasks/test/runner.php +++ b/laravel/cli/tasks/test/runner.php @@ -83,7 +83,7 @@ class Runner extends Task { // fix the spaced directories problem when using the command line // strings with spaces inside should be wrapped in quotes. - $path = escapeshellarg($path) + $path = escapeshellarg($path); passthru('phpunit --configuration '.$path);