Skip to content

Commit

Permalink
fix(tests): do not rely on directory ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Sep 18, 2024
1 parent 62f11db commit ccaf8ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wlc/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ def test_download_config(self):
settings=False,
)
self.assertEqual(
os.listdir(tmpdirname), ["hello-weblate.zip", "hello-android.zip"]
set(os.listdir(tmpdirname)), {"hello-weblate.zip", "hello-android.zip"}
)

def test_upload(self):
Expand Down

0 comments on commit ccaf8ca

Please sign in to comment.