Commit 24f6cd4f authored by Stefan Behnel's avatar Stefan Behnel

Improve test stats formatting.

parent 268a598b
......@@ -586,7 +586,7 @@ class Stats(object):
lines = ['Times:\n']
for metric, t in sorted(self.test_times.items()):
count = self.test_counts[metric]
lines.append("%-12s: %8.2f sec (%d, %.3f / run)\n" % (metric, t, count, t / count))
lines.append("%-12s: %8.2f sec (%4d, %6.3f / run)\n" % (metric, t, count, t / count))
out.write(''.join(lines))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment