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

Unified Diff: appengine/swarming/test_env_handlers.py

Issue 2856733002: swarming: add transaction_id to tasks.new request
Patch Set: nits Created 3 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
« appengine/swarming/swarming_rpcs.py ('K') | « appengine/swarming/swarming_rpcs.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/swarming/test_env_handlers.py
diff --git a/appengine/swarming/test_env_handlers.py b/appengine/swarming/test_env_handlers.py
index a83f0519883971bd8132caadf5124f573dbb2475..6b7f3605909be342ba302389a8f155af75e4823b 100644
--- a/appengine/swarming/test_env_handlers.py
+++ b/appengine/swarming/test_env_handlers.py
@@ -263,7 +263,7 @@ class AppTestBase(test_case.TestCase):
request = swarming_rpcs.NewTaskRequest(**params)
response = self.endpoint_call(
handlers_endpoints.SwarmingTasksService, 'new', request)
- return response, response['task_id']
+ return request, response, response['task_id']
def client_create_task_isolated(self, properties=None, **kwargs):
properties = (properties or {}).copy()
« appengine/swarming/swarming_rpcs.py ('K') | « appengine/swarming/swarming_rpcs.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698