Revert "tests: separate test component names with dot"

This reverts commit f7a47e6c66.

It is now unneeded since parser, which accepts old names.
Old names are more readable.
This commit is contained in:
Wojtek Porczyk 2015-02-19 21:32:55 +01:00
parent 5a9c390485
commit bb5099dc9b

View File

@ -102,7 +102,7 @@ class QubesTestResult(unittest.TestResult):
fullname[-1] = '{color[bold]}{}{color[normal]}'.format(
fullname[-1], color=self.color)
teststr[i] = '_'.join(fullname)
teststr = '.'.join(teststr)
teststr = '/'.join(teststr)
doc_first_line = test.shortDescription()
if self.descriptions and doc_first_line: