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

Unified Diff: client/tests/swarming_test.py

Issue 1939343002: swarming: change meaning of inputs_ref (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@master
Patch Set: fix templates Created 4 years, 7 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/swarming.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tests/swarming_test.py
diff --git a/client/tests/swarming_test.py b/client/tests/swarming_test.py
index b9c7698097d3431105f39ff323e1a28e16342e25..64fb9cb754daaf9fe9c27d2881b1794ec56271fe 100755
--- a/client/tests/swarming_test.py
+++ b/client/tests/swarming_test.py
@@ -308,15 +308,15 @@ class TestSwarmingTrigger(NetTestCase):
parent_task_id=None,
priority=101,
properties=swarming.TaskProperties(
- command=['a', 'b'],
- dimensions={'foo': 'bar', 'os': 'Mac'},
- env={},
- execution_timeout_secs=60,
- extra_args=[],
- grace_period_secs=30,
- idempotent=False,
- inputs_ref=None,
- io_timeout_secs=60),
+ command=['a', 'b'],
+ dimensions={'foo': 'bar', 'os': 'Mac'},
+ env={},
+ execution_timeout_secs=60,
+ extra_args=[],
+ grace_period_secs=30,
+ idempotent=False,
+ inputs_ref=None,
+ io_timeout_secs=60),
tags=['tag:a', 'tag:b'],
user='joe@localhost')
@@ -374,15 +374,15 @@ class TestSwarmingTrigger(NetTestCase):
parent_task_id='123',
priority=101,
properties=swarming.TaskProperties(
- command=['a', 'b'],
- dimensions={'foo': 'bar', 'os': 'Mac'},
- env={},
- execution_timeout_secs=60,
- extra_args=[],
- grace_period_secs=30,
- idempotent=False,
- inputs_ref=None,
- io_timeout_secs=60),
+ command=['a', 'b'],
+ dimensions={'foo': 'bar', 'os': 'Mac'},
+ env={},
+ execution_timeout_secs=60,
+ extra_args=[],
+ grace_period_secs=30,
+ idempotent=False,
+ inputs_ref=None,
+ io_timeout_secs=60),
tags=['tag:a', 'tag:b'],
user='joe@localhost')
« no previous file with comments | « client/swarming.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698