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

This commit is contained in:
Franz Liedke 2012-07-13 00:21:18 +03:00
parent 1503aed7ce
commit 6d23c4f5c6
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ protected function test()
// 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);