Skip to content

Commit

Permalink
sort output
Browse files Browse the repository at this point in the history
  • Loading branch information
chanwutk committed Aug 10, 2023
1 parent 9d1f12e commit 9a3d5d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/workflow/test_simple_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ def test_simple_workflow():

for filename, ogs in objects_groundtruth.items():
assert filename in objects, (filename, objects.keys())
for op, og in zip(objects[filename], ogs):
for op, og in zip(sorted(objects[filename]), sorted(ogs)):
assert op == og, (op, og)

0 comments on commit 9a3d5d0

Please sign in to comment.