Skip to content

Commit

Permalink
Update test_utils.py
Browse files Browse the repository at this point in the history
  • Loading branch information
robbibt authored Nov 8, 2024
1 parent 66497c2 commit 5f3fe88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ def test_clip_models():
input_directory="tests/data/tide_models", output_directory=tmpdirname, bbox=(122.27, -18.07, 122.29, -18.05)
)

output_files = [i.stem for i in pathlib.Path(tmpdirname).iterdir()]
assert output_files == ["GOT5", "EOT20", "hamtide"]
output_files = set([i.stem for i in pathlib.Path(tmpdirname).iterdir()])
assert output_files == set(["GOT5", "EOT20", "hamtide"])


@pytest.mark.parametrize(
Expand Down

0 comments on commit 5f3fe88

Please sign in to comment.