diff options
author | Michał Górny <mgorny@gentoo.org> | 2011-08-12 11:33:07 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2011-08-12 11:33:24 +0200 |
commit | 3a4f945b68d90eb9d9bc7b05273361928b29837b (patch) | |
tree | 22648c74b5ee2d84f773507b5cece3ec8eb5f42c | |
parent | HTML output: let assertion prefixes rowspan. (diff) | |
download | pms-test-suite-3a4f945b68d90eb9d9bc7b05273361928b29837b.tar.gz pms-test-suite-3a4f945b68d90eb9d9bc7b05273361928b29837b.tar.bz2 pms-test-suite-3a4f945b68d90eb9d9bc7b05273361928b29837b.zip |
HTML output: include PM version as well.
-rw-r--r-- | pmstestsuite/output/html.py | 2 |
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') |