| 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 c57a85fbdd1f1dfe52a3c2618848ae9f4399f185..35394db6585dadd68376949dc833dd0ae56b2a02 100644
|
| --- a/appengine/findit/waterfall/schedule_try_job_pipeline.py
|
| +++ b/appengine/findit/waterfall/schedule_try_job_pipeline.py
|
| @@ -31,13 +31,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
|
|
|