Skip to content

Commit f56fb44

Browse files
committed
Bug 1365646: fix logic error in try syntax -j handling; r=gps
MozReview-Commit-ID: ApKmq9IYRtV
1 parent b1d37a1 commit f56fb44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

taskcluster/taskgraph/try_option_syntax.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ def match_test(try_spec, attr_name):
587587
job_try_name = attr('job_try_name')
588588
if job_try_name:
589589
if self.jobs is None or job_try_name in self.jobs:
590-
if self.platforms is None or attr('build_platform') not in self.platforms:
590+
if self.platforms is None or attr('build_platform') in self.platforms:
591591
return True
592592
elif attr('kind') == 'test':
593593
return match_test(self.unittests, 'unittest_try_name') \

0 commit comments

Comments
 (0)