diff options
| author | jvoisin | 2019-04-14 21:00:13 +0200 |
|---|---|---|
| committer | jvoisin | 2019-04-14 21:00:13 +0200 |
| commit | 20ed5eb7d665ac9cb8b33929b4898c0a837fdb66 (patch) | |
| tree | 951dc8f2206b75a134796e220dce6e26744f9a61 /tests/test_libmat2.py | |
| parent | 05f429b197800f96ad4ffc766668096bfdb0e333 (diff) | |
Improve a bit the verbosity of a test
Diffstat (limited to 'tests/test_libmat2.py')
| -rw-r--r-- | tests/test_libmat2.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_libmat2.py b/tests/test_libmat2.py index 250b5ec..397855e 100644 --- a/tests/test_libmat2.py +++ b/tests/test_libmat2.py | |||
| @@ -17,8 +17,8 @@ class TestCheckDependencies(unittest.TestCase): | |||
| 17 | except RuntimeError: | 17 | except RuntimeError: |
| 18 | return # this happens if not every dependency is installed | 18 | return # this happens if not every dependency is installed |
| 19 | 19 | ||
| 20 | for value in ret.values(): | 20 | for key, value in ret.items(): |
| 21 | self.assertTrue(value) | 21 | self.assertTrue(value, "The value for %s is False" % key) |
| 22 | 22 | ||
| 23 | 23 | ||
| 24 | class TestParserFactory(unittest.TestCase): | 24 | class TestParserFactory(unittest.TestCase): |
