1
0
mirror of synced 2024-06-09 07:47:47 +02:00

Improve a bit the verbosity of a test

This commit is contained in:
jvoisin 2019-04-14 21:00:13 +02:00
parent 05f429b197
commit 20ed5eb7d6

View File

@ -17,8 +17,8 @@ class TestCheckDependencies(unittest.TestCase):
except RuntimeError:
return # this happens if not every dependency is installed
for value in ret.values():
self.assertTrue(value)
for key, value in ret.items():
self.assertTrue(value, "The value for %s is False" % key)
class TestParserFactory(unittest.TestCase):