From 14813f5fee1a2c18cf534e9a53d034e89d4be190 Mon Sep 17 00:00:00 2001 From: Tobias Witek Date: Sun, 22 Dec 2019 14:24:44 +0100 Subject: [PATCH] [tests] improve output see #491 --- tests/test_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_config.py b/tests/test_config.py index 395dcb7..552fe9f 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -67,7 +67,7 @@ class TestConfig(unittest.TestCase): cfg = Config(["-l", "modules"]) result = self.stdout.getvalue() for module in all_modules(): - self.assertTrue(module["name"] in result) + self.assertTrue(module["name"] in result, "module {} missing in result".format(module["name"])) def test_invalid_list(self): with self.assertRaises(SystemExit):