Skip to content

Commit

Permalink
Right-align the iterations count.
Browse files Browse the repository at this point in the history
  • Loading branch information
UlrichEckhardt committed Nov 8, 2014
1 parent e8228fe commit 02fbe6b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Athletic/Formatters/DefaultFormatter.php
Expand Up @@ -74,7 +74,7 @@ public function getFormattedResults($results)
$returnString .= sprintf(
" %s: [%s] [%s] [%s]\n",
str_pad($row[0], $lengths[0]),
str_pad($row[1], $lengths[1]),
str_pad($row[1], $lengths[1], ' ', STR_PAD_LEFT),
str_pad($row[2], $lengths[2]),
str_pad($row[3], $lengths[3])
);
Expand Down
14 changes: 7 additions & 7 deletions tests/Athletic/Formatters/DefaultFormatterTest.php
Expand Up @@ -55,7 +55,7 @@ public function testOneClassOneMethod()
testClass
Method Name Iterations Average Time Ops/second
------------ ------------ ----------------- ------------
testName : [5 ] [5.0000000000000] [5.00000 ]
testName : [ 5] [5.0000000000000] [5.00000 ]
Expand Down Expand Up @@ -99,9 +99,9 @@ public function testOneClassThreeMethods()
testClass
Method Name Iterations Average Time Ops/second
------------ ------------ ----------------- ------------
testName : [5 ] [5.0000000000000] [5.00000 ]
testName : [5 ] [5.0000000000000] [5.00000 ]
testName : [5 ] [5.0000000000000] [5.00000 ]
testName : [ 5] [5.0000000000000] [5.00000 ]
testName : [ 5] [5.0000000000000] [5.00000 ]
testName : [ 5] [5.0000000000000] [5.00000 ]
Expand Down Expand Up @@ -145,19 +145,19 @@ public function testThreeClassOneMethod()
testClass
Method Name Iterations Average Time Ops/second
------------ ------------ ----------------- ------------
testName : [5 ] [5.0000000000000] [5.00000 ]
testName : [ 5] [5.0000000000000] [5.00000 ]
testClass
Method Name Iterations Average Time Ops/second
------------ ------------ ----------------- ------------
testName : [5 ] [5.0000000000000] [5.00000 ]
testName : [ 5] [5.0000000000000] [5.00000 ]
testClass
Method Name Iterations Average Time Ops/second
------------ ------------ ----------------- ------------
testName : [5 ] [5.0000000000000] [5.00000 ]
testName : [ 5] [5.0000000000000] [5.00000 ]
Expand Down

0 comments on commit 02fbe6b

Please sign in to comment.