We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7c614d commit fcf2e91Copy full SHA for fcf2e91
test/decoders/test_video_decoder.py
@@ -54,7 +54,7 @@ def test_create_fails(self):
54
with pytest.raises(ValueError, match="No valid stream found"):
55
decoder = VideoDecoder(NASA_VIDEO.path, stream_index=1) # noqa
56
57
- @pytest.mark.parametrize("num_ffmpeg_threads", ("int", 1, 4))
+ @pytest.mark.parametrize("num_ffmpeg_threads", (1, 4))
58
def test_getitem_int(self, num_ffmpeg_threads):
59
decoder = VideoDecoder(NASA_VIDEO.path, num_ffmpeg_threads=num_ffmpeg_threads)
60
0 commit comments