From: Brion Vibber Date: Sat, 11 Nov 2006 21:05:41 +0000 (+0000) Subject: add ellipsis on final line as suggested on mailing list to clarify X-Git-Tag: 1.31.0-rc.0~55223 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/modifier.php?a=commitdiff_plain;h=42c181dd13775530f4cea2ef85b5c0c9a57fc694;p=lhc%2Fweb%2Fwiklou.git add ellipsis on final line as suggested on mailing list to clarify --- diff --git a/maintenance/parserTests.inc b/maintenance/parserTests.inc index 19c48b792a..b2552032f5 100644 --- a/maintenance/parserTests.inc +++ b/maintenance/parserTests.inc @@ -882,7 +882,7 @@ class TestRecorder { function reportPercentage( $success, $total ) { $ratio = wfPercent( 100 * $success / $total ); - print $this->term->color( 1 ) . "Passed $success of $total tests ($ratio) "; + print $this->term->color( 1 ) . "Passed $success of $total tests ($ratio)... "; if( $success == $total ) { print $this->term->color( 32 ) . "PASSED!"; } else {