diff --git a/tests/unit/tools/test_video.py b/tests/unit/tools/test_video.py index 4dfcf54b..2ef1fe21 100644 --- a/tests/unit/tools/test_video.py +++ b/tests/unit/tools/test_video.py @@ -6,5 +6,5 @@ def test_extract_frames_from_video(): video_path = "tests/data/video/test.mp4" # there are 48 frames at 24 fps in this video file - res = extract_frames_from_video(video_path) - assert len(res) == 2 + res = extract_frames_from_video(video_path, fps=24) + assert len(res) == 48