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

Unified Diff: expect_tests/handle_list.py

Issue 554213004: Refactored types to simplify pickling. (Closed) Base URL: https://chromium.googlesource.com/infra/testing/expect_tests@shebang
Patch Set: Fixed breakpoints computation Created 6 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 | expect_tests/type_definitions.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: expect_tests/handle_list.py
diff --git a/expect_tests/handle_list.py b/expect_tests/handle_list.py
index 317c0bbc49169ba0c2b4ae17071515e1134c5e22..ca65112361d2fbd71bd6cbbbcf8a9b7566e66bc0 100644
--- a/expect_tests/handle_list.py
+++ b/expect_tests/handle_list.py
@@ -14,14 +14,14 @@ class ListHandler(Handler):
class ResultStageHandler(Handler.ResultStageHandler):
@staticmethod
- def handle_TestInfo(test):
+ def handle_Test(test):
if ListHandler.COMPLETION_LIST is not None:
ListHandler.COMPLETION_LIST.append(test.name)
else:
print test.name
@staticmethod
- def handle_MultiTestInfo(multi_test):
+ def handle_MultiTest(multi_test):
print 'MultiTestInfo(%r, atomic=%r)' % (
multi_test.name, multi_test.atomic)
for test in multi_test.tests:
« no previous file with comments | « no previous file | expect_tests/type_definitions.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698