diff --git a/modules/jenkins/files/slave_scripts/subunit2html.py b/modules/jenkins/files/slave_scripts/subunit2html.py
index 4dbcceb60f..0fd9d7bb07 100755
--- a/modules/jenkins/files/slave_scripts/subunit2html.py
+++ b/modules/jenkins/files/slave_scripts/subunit2html.py
@@ -562,7 +562,7 @@ class HtmlOutput(unittest.TestResult):
             if cls.mod == "__main__":
                 name = cls.name
             else:
-                name = "%s.%s" % (cls.mod, cls.name)
+                name = "%s" % (cls.name)
             doc = cls.__doc__ and cls.__doc__.split("\n")[0] or ""
             desc = doc and '%s: %s' % (name, doc) or name