Skip to content

test/: fix failing tests due to missing argument (fixup d6ce5703) #741

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 25, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions test/test_metadata.py
Original file line number Diff line number Diff line change
@@ -167,6 +167,7 @@ def test_calculate_num_frames_using_fps_and_duration(
codec="whatever",
width=123,
height=321,
pixel_aspect_ratio=Fraction(10, 11),
average_fps_from_header=average_fps_from_header,
stream_index=0,
)
@@ -198,6 +199,7 @@ def test_duration_seconds_fallback(
codec="whatever",
width=123,
height=321,
pixel_aspect_ratio=Fraction(10, 11),
average_fps_from_header=5,
stream_index=0,
)
@@ -226,6 +228,7 @@ def test_calculate_duration_seconds_using_fps_and_num_frames(
codec="whatever",
width=123,
height=321,
pixel_aspect_ratio=Fraction(10, 11),
average_fps_from_header=average_fps_from_header,
stream_index=0,
)