Commit 1db67d47 by Dayle Rees

Merge pull request #947 from franzliedke/patch-24

Missing semicolon breaking test runner
parents 38234c61 6d23c4f5
...@@ -83,7 +83,7 @@ class Runner extends Task { ...@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment