Merge pull request #947 from franzliedke/patch-24

Missing semicolon breaking test runner
This commit is contained in:
Dayle Rees
2012-07-23 08:21:07 -07:00

View File

@@ -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);