| Index: appengine/findit/waterfall/schedule_try_job_pipeline.py
|
| diff --git a/appengine/findit/waterfall/schedule_try_job_pipeline.py b/appengine/findit/waterfall/schedule_try_job_pipeline.py
|
| index a29ca3d4f6c3086a46f3ca90320dec0864b2c727..e157d7a36b3c8494fb4be6408acdf1375d13952f 100644
|
| --- a/appengine/findit/waterfall/schedule_try_job_pipeline.py
|
| +++ b/appengine/findit/waterfall/schedule_try_job_pipeline.py
|
| @@ -32,13 +32,14 @@ class ScheduleTryJobPipeline(BasePipeline):
|
| properties['target_buildername'] = builder_name
|
| if compile_targets:
|
| properties['compile_targets'] = compile_targets
|
| - if suspected_revisions:
|
| - properties['suspected_revisions'] = suspected_revisions
|
| else: # try_job_type is 'test'.
|
| properties['target_testername'] = builder_name
|
| assert targeted_tests
|
| properties['tests'] = targeted_tests
|
|
|
| + if suspected_revisions:
|
| + properties['suspected_revisions'] = suspected_revisions
|
| +
|
| return properties
|
|
|
| # Arguments number differs from overridden method - pylint: disable=W0221
|
|
|