Index: trunk/phase3/maintenance/parserTests.inc |
— | — | @@ -188,8 +188,8 @@ |
189 | 189 | } |
190 | 190 | } |
191 | 191 | if( $total > 0 ) { |
192 | | - $ratio = sprintf( "%.2f", 100 * $success / $total ); |
193 | | - print $this->termColor( 1 ) . "\nPassed $success of $total tests ($ratio%) "; |
| 192 | + $ratio = percent( 100 * $success / $total ); |
| 193 | + print $this->termColor( 1 ) . "\nPassed $success of $total tests ($ratio) "; |
194 | 194 | if( $success == $total ) { |
195 | 195 | print $this->termColor( 32 ) . "PASSED!"; |
196 | 196 | } else { |