diff options
author | Eriko Torralba <Valkyrurr@users.noreply.github.com> | 2016-04-21 17:38:36 +0800 |
---|---|---|
committer | Eriko Torralba <Valkyrurr@users.noreply.github.com> | 2016-04-21 17:38:36 +0800 |
commit | e26dabd8ee8deaf1e6e371345cbbe44b43e6f8fe (patch) | |
tree | a358ab8446b07dc13b5a75ee7811c17672733de4 /run-tests.php | |
parent | ecf6392243b90e6c8f5597076b11b4959bac9dc1 (diff) | |
download | php-git-e26dabd8ee8deaf1e6e371345cbbe44b43e6f8fe.tar.gz |
Update run-tests.php
code style; lack of whitespace
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 25123c319f..d17ffe4baf 100755 --- a/run-tests.php +++ b/run-tests.php @@ -2792,7 +2792,7 @@ function junit_mark_test_as($type, $file_name, $test_name, $time = null, $messag } elseif ('WARN' == $type) { junit_suite_record($suite, 'test_warn'); $JUNIT['files'][$file_name]['xml'] .= "<warning>$escaped_message</warning>\n"; - } elseif('FAIL' == $type) { + } elseif ('FAIL' == $type) { junit_suite_record($suite, 'test_fail'); $JUNIT['files'][$file_name]['xml'] .= "<failure type='$output_type' message='$escaped_message'>$escaped_details</failure>\n"; } else { |