Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaFaer committed Feb 7, 2024
1 parent 1ac6153 commit 94e3c5d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/common/storages/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ def assert_sample_files(

for item in all_file_items:
# only accept file items we know
assert item["file_name"] in minimally_expected_file_items
if not item["file_name"] in minimally_expected_file_items:
continue

assert isinstance(item["file_name"], str)
assert item["file_url"].endswith(item["file_name"])
Expand Down

0 comments on commit 94e3c5d

Please sign in to comment.