Skip to content

Commit

Permalink
Bug 1884280 - sort result and expected tasks before comparing. r=gbrown
Browse files Browse the repository at this point in the history
  • Loading branch information
jmaher committed Mar 11, 2024
1 parent a1ec0a1 commit b05724c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/tryselect/test/test_fuzzy.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def test_query_paths_variants(run_mach, capfd, variant):
index = output.find(delim)
result = json.loads(output[index + len(delim) :])
tasks = result["parameters"]["try_task_config"]["tasks"]
assert tasks == expected
assert sorted(tasks) == sorted(expected)


@pytest.mark.skipif(os.name == "nt", reason="fzf not installed on host")
Expand Down

0 comments on commit b05724c

Please sign in to comment.