From d9b77dcd10b5314528b32858f1e6108280f0960c Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Thu, 11 Aug 2011 10:48:45 +0200 Subject: Use short test names in HTML output (instead of direct classes). --- pmstestsuite/output/html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmstestsuite/output/html.py b/pmstestsuite/output/html.py index f766ffe..749f95e 100644 --- a/pmstestsuite/output/html.py +++ b/pmstestsuite/output/html.py @@ -79,7 +79,7 @@ class HTMLOutput(OutputModule): def _results_by_class(reorderedresults): ret = defaultdict(dict) for t, r in reorderedresults.items(): - ret[t.__class__.__name__][t] = r + ret[t.short_name][t] = r return ret def _sorted_pms(pms): -- cgit v1.2.3-65-gdbad