Browse Source
Use combined assignment contanation operator
pull/3458/merge
Gabriel Caruso
8 years ago
No known key found for this signature in database
GPG Key ID: EA85C7988F5A6877
1 changed files with
1 additions and
1 deletions
-
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; |
|
|
|
} |
|
|
|
|