Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
byrdie committed Oct 24, 2024
1 parent 743c309 commit 33ef7d2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions iris/_tests/test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from typing import Sequence
import pytest
import pathlib
import urlpath
import astropy.time
import iris

Expand Down Expand Up @@ -63,7 +62,7 @@ def test_urls_hek(
assert isinstance(result, list)
assert len(result) > 0
for url in result:
assert isinstance(url, urlpath.URL)
assert isinstance(url, str)


@pytest.mark.parametrize(
Expand All @@ -79,7 +78,7 @@ def test_urls_hek(
@pytest.mark.parametrize("directory", [None])
@pytest.mark.parametrize("overwrite", [False])
def test_download(
urls: list[urlpath.URL],
urls: list[str],
directory: None | pathlib.Path,
overwrite: bool,
):
Expand Down

0 comments on commit 33ef7d2

Please sign in to comment.