Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
bjudkewitz committed Oct 5, 2024
1 parent a4ca853 commit a97d35a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/napari_pyav/_tests/test_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def test_reader(tmp_path):
import urllib.request
video_path = str(tmp_path / "test.mp4")
urllib.request.urlretrieve("https://ia803405.us.archive.org/27/items/archive-video-files/test.mp4", video_path)
reader = napari_get_reader([video_path])([video_path])[0]
reader = napari_get_reader([video_path])([video_path])[0][0]
print(reader, type(reader))
for frame in reader:
assert isinstance(frame, np.ndarray), str(type(reader)) + str(reader)
Expand Down

0 comments on commit a97d35a

Please sign in to comment.