Skip to content

Commit

Permalink
Bug 1622446 - Fix default value for expected status, r=remote-protoco…
Browse files Browse the repository at this point in the history
…l-reviewers,whimboo

Differential Revision: https://phabricator.services.mozilla.com/D66945

--HG--
extra : moz-landing-system : lando
  • Loading branch information
jgraham committed Mar 16, 2020
1 parent 3d7fa66 commit 97d4c62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion remote/mach_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def __call__(self, line):
if m:
status, test_name = m.groups()
status = self.status_map.get(status, status)
expected = self.expected.get(test_name, "PASS")
expected = self.expected.get(test_name, ["PASS"])
known_intermittent = expected[1:]
expected_status = expected[0]

Expand Down

0 comments on commit 97d4c62

Please sign in to comment.