tests: use dot to separate test name components

This way the name can be directly copied to cmdline to rerun that
particular test.
This commit is contained in:
Marek Marczykowski-Górecki 2015-02-21 00:39:19 +01:00
parent e65842322a
commit 454788d459

View File

@ -129,7 +129,7 @@ class QubesTestCase(unittest.TestCase):
def __str__(self):
return '{}/{}/{}'.format(
return '{}.{}.{}'.format(
'.'.join(self.__class__.__module__.split('.')[2:]),
self.__class__.__name__,
self._testMethodName)