diff --git a/tools/parse_test_results.py b/tools/parse_test_results.py
index 5d9437072..f4941fb61 100755
--- a/tools/parse_test_results.py
+++ b/tools/parse_test_results.py
@@ -214,12 +214,12 @@ for branch_name in revs:
html = open(html_file, 'w+')
print >>html, '''
regression tests, %s
%s - %s
''' % (project_name, project_name, branch_name)
@@ -239,7 +239,7 @@ for branch_name in revs:
print >>html, 'revision %d | ' % r
for f in tests:
- print >>html, '%s | ' % (len(tests[f]), len(tests[f])*9 - 5, f)
+ print >>html, '%s | ' % (len(tests[f]), len(tests[f])*6 - 5, f)
print >>html, '
'
for p in platforms: