| 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 0a0e53dd8f8ed85982fb33ed051b395f9f25d3c1..eb3b1942973832cadecb51d4a0c24a6a22a33824 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_ids(self):
 | 
|      return tuple(self._bot_ids)
 | 
|  
 | 
| +  def _AsDict(self):
 | 
| +    return {
 | 
| +        'bot_ids': self._bot_ids,
 | 
| +        'task_ids': self._task_ids,
 | 
| +        'input_isolate_hash': self._isolate_hash,
 | 
| +    }
 | 
| +
 | 
|    def _Poll(self):
 | 
|      if not self._task_ids:
 | 
|        self._StartTask()
 | 
| 
 |