Skip to content

Commit

Permalink
[test_examples.Test_fetch_example_data.test_alias_unzip_to_otherfile]…
Browse files Browse the repository at this point in the history
… sort the output of os.listdir
  • Loading branch information
gph82 committed Sep 3, 2024
1 parent 2456f44 commit 44c5a2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def test_alias_unzip_to_otherfile(self):
assert len(files) == 2
assert files[0] == "unzip_here.zip"
assert files[1] == "unzip_here"
extracted = os.listdir(files[1])
extracted = sorted(os.listdir(files[1]))
assert extracted[0] == "A.dat"
assert extracted[1] == "B.dat"

Expand Down

0 comments on commit 44c5a2d

Please sign in to comment.