Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Unified Diff: client/bin/factory.py

Issue 3351019: fix: factory framework member name change (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git
Patch Set: Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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):
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698