diff --git a/pctasks/core/tests/storage/test_local.py b/pctasks/core/tests/storage/test_local.py index 40b9ac5d..cc3f560c 100644 --- a/pctasks/core/tests/storage/test_local.py +++ b/pctasks/core/tests/storage/test_local.py @@ -51,5 +51,5 @@ def test_walk_match_full_path(): min_depth=1, max_depth=1, matches="a/asset-.*.json", match_full_path=True ) } - assert subdirs["a"] == ["asset-a-1.json", "asset-a-2.json"] + assert set(subdirs["a"]) == {"asset-a-1.json", "asset-a-2.json"} assert subdirs["b"] == []