Browse Source

Fix missing semicolon in laravel/cli/test/runner.php.

Franz Liedke 12 years ago
parent
commit
6d23c4f5c6
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
 		// fix the spaced directories problem when using the command line
 		// strings with spaces inside should be wrapped in quotes.
 		// strings with spaces inside should be wrapped in quotes.
-		$path = escapeshellarg($path)
+		$path = escapeshellarg($path);
 
 
 		passthru('phpunit --configuration '.$path);
 		passthru('phpunit --configuration '.$path);