| Index: client/bin/factory.py
|
| diff --git a/client/bin/factory.py b/client/bin/factory.py
|
| index 00023f1599e0f496769db144e021b4af2fcc7bcc..009eba17ee16af5bc66b07821628467368e6dc59 100644
|
| --- a/client/bin/factory.py
|
| +++ b/client/bin/factory.py
|
| @@ -221,7 +221,7 @@ class StatusMap:
|
| comp = (isinstance(target_status, list) and
|
| (lambda s: s in target_status) or
|
| (lambda s: s == target_status))
|
| - return [test for test in self._test_db.all_tests
|
| + return [test for test in self._test_db.get_all_tests()
|
| if comp(self.lookup_status(test))]
|
|
|
| def next_untested(self):
|
|
|