aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pmstestsuite/output/html.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pmstestsuite/output/html.py b/pmstestsuite/output/html.py
index f423d8f..d5e0676 100644
--- a/pmstestsuite/output/html.py
+++ b/pmstestsuite/output/html.py
@@ -168,7 +168,7 @@ class HTMLOutput(OutputModule):
table[0][2] = TH('Assertion', colspan = 2)
table[0][4] = TH('Expected')
for i, pm in enumerate(mypms):
- table[0][5 + i*2] = TH(pm.name, colspan = 2)
+ table[0][5 + i*2] = TH('%s %s' % (pm.name, pm.version), colspan = 2)
table[0][6 + i*2] = NoCell()
table[1][5 + i*2] = TH('Actual')
table[1][6 + i*2] = TH('Result')