| Index: dashboard/dashboard/pinpoint/models/quest/run_test.py
|
| diff --git a/dashboard/dashboard/pinpoint/models/quest/run_test.py b/dashboard/dashboard/pinpoint/models/quest/run_test.py
|
| index 3a4b90c2a3f80f75123a1c76aeccba43ed31adb0..43c90922732e109039cc77bff75e07386107ba0a 100644
|
| --- a/dashboard/dashboard/pinpoint/models/quest/run_test.py
|
| +++ b/dashboard/dashboard/pinpoint/models/quest/run_test.py
|
| @@ -97,6 +97,13 @@ class _RunTestExecution(execution_module.Execution):
|
| def bot_id(self):
|
| return self._bot_id
|
|
|
| + def _AsDict(self):
|
| + return {
|
| + 'bot_id': self._bot_id,
|
| + 'task_id': self._task_id,
|
| + 'input_isolate_hash': self._isolate_hash,
|
| + }
|
| +
|
| def _Poll(self):
|
| if not self._task_id:
|
| self._StartTask()
|
| @@ -117,8 +124,8 @@ class _RunTestExecution(execution_module.Execution):
|
| if result['failure']:
|
| raise SwarmingTestError(self._task_id, result['exit_code'])
|
|
|
| - result_arguments = {'isolate_hash': result['outputs_ref']['isolated']}
|
| - self._Complete(result_arguments=result_arguments)
|
| + self._Complete(
|
| + result_arguments={'isolate_hash': result['outputs_ref']['isolated']})
|
|
|
|
|
| def _StartTask(self):
|
|
|