tests: do not drop 'qubes.tests.' prefix

This cause troubles with "external" tests (loaded from outside of
qubes.tests module).
This commit is contained in:
Marek Marczykowski-Górecki 2016-04-20 02:25:06 +02:00
parent 540942de47
commit a1575b98d4
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

View File

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