Browse Source

Merge pull request #947 from franzliedke/patch-24

Missing semicolon breaking test runner
Dayle Rees 12 years ago
parent
commit
1db67d47a3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/cli/tasks/test/runner.php

+ 1 - 1
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);