diff options
Diffstat (limited to 'run-tests.php')
-rwxr-xr-x | run-tests.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run-tests.php b/run-tests.php index 38d905d268..df53645ef2 100755 --- a/run-tests.php +++ b/run-tests.php @@ -2924,7 +2924,7 @@ function junit_path_to_classname($file_name) { array_shift($_tmp); } foreach ($_tmp as $p) { - $ret = $ret . "." . preg_replace(",[^a-z0-9]+,i", ".", $p); + $ret .= "." . preg_replace(",[^a-z0-9]+,i", ".", $p); } return $ret; } |