Skip to content

Commit

Permalink
fix test case
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonalaird committed Sep 11, 2024
1 parent 4e674dd commit 52bebe5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/tools/test_video.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 52bebe5

Please sign in to comment.