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

Unified Diff: client/bin/harness_unittest.py

Issue 6539001: Merge remote branch 'cros/upstream' into master. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git@master
Patch Set: patch Created 9 years, 10 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 | « client/bin/harness_standalone.py ('k') | client/bin/job.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/bin/harness_unittest.py
diff --git a/client/bin/harness_unittest.py b/client/bin/harness_unittest.py
index 908243f9a919d11dfa9e0c0beb5d7a69b4bf171a..a94af5526f7fa1744030447e8525dc053737e132 100755
--- a/client/bin/harness_unittest.py
+++ b/client/bin/harness_unittest.py
@@ -18,8 +18,9 @@ class harness_unittest(unittest.TestCase):
job = object()
self.god.stub_class(harness_standalone, "harness_standalone")
- harness_standalone.harness_standalone.expect_new(job)
- harness.select(None, job)
+ harness_args = ''
+ harness_standalone.harness_standalone.expect_new(job, harness_args)
+ harness.select(None, job, harness_args)
self.god.check_playback()
@@ -27,8 +28,9 @@ class harness_unittest(unittest.TestCase):
job = object()
self.god.stub_class(harness_standalone, "harness_standalone")
- harness_standalone.harness_standalone.expect_new(job)
- harness.select('standalone', job)
+ harness_args = ''
+ harness_standalone.harness_standalone.expect_new(job, harness_args)
+ harness.select('standalone', job, harness_args)
self.god.check_playback()
@@ -36,8 +38,9 @@ class harness_unittest(unittest.TestCase):
job = object()
self.god.stub_class(harness_ABAT, "harness_ABAT")
- harness_ABAT.harness_ABAT.expect_new(job)
- harness.select('ABAT', job)
+ harness_args = ''
+ harness_ABAT.harness_ABAT.expect_new(job, harness_args)
+ harness.select('ABAT', job, harness_args)
self.god.check_playback()
« no previous file with comments | « client/bin/harness_standalone.py ('k') | client/bin/job.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698