1
0
Fork 0

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
1 changed files with 2 additions and 2 deletions

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):