diff --git a/HookTest/units.py b/HookTest/units.py index da9a6aa..9d34f03 100644 --- a/HookTest/units.py +++ b/HookTest/units.py @@ -456,6 +456,6 @@ def test(self, scheme, inventory=None): for test in tests: # Show the logs and return the status - status = False in [status for status in getattr(self, test)()] + status = False not in [status for status in getattr(self, test)()] yield (CTSUnit.readable[test], status, self.logs) self.flush()