Skip to content

Commit

Permalink
Remove annoying extra newline on XFAIL summaries
Browse files Browse the repository at this point in the history
and sync text to trunk
  • Loading branch information
bjori committed Aug 31, 2011
1 parent 9bedfa5 commit 84fc76e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run-tests.php
Original file line number Diff line number Diff line change
Expand Up @@ -1948,7 +1948,7 @@ function run_test($php, $file, $env)
if (!$passed) {
if (isset($section_text['XFAIL'])) {
$restype[] = 'XFAIL';
$info = ' XFAIL REASON: ' . $section_text['XFAIL'];
$info = ' XFAIL REASON: ' . rtrim($section_text['XFAIL']);
} else {
$restype[] = 'FAIL';
}
Expand Down

0 comments on commit 84fc76e

Please sign in to comment.