Skip to content

Commit

Permalink
transport-wide-cc-extensions-01 の出力に合わせてテストを変更する
Browse files Browse the repository at this point in the history
  • Loading branch information
miosakuma committed Dec 30, 2024
1 parent da3d7fc commit c86d0bf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/test_openh264.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def test_openh264_sendonly_recvonly(setup):
@pytest.mark.parametrize(
"video_codec_type,expected_implementation",
[
("H264", "SimulcastEncoderAdapter (OpenH264, OpenH264, OpenH264)"),
("H264", "SimulcastEncoderAdapter (OpenH264)"),
],
)
def test_openh264_simulcast(setup, video_codec_type, expected_implementation):
Expand Down
6 changes: 3 additions & 3 deletions tests/test_simulcast.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
@pytest.mark.parametrize(
("video_codec_type", "expected_implementation"),
[
("VP8", "SimulcastEncoderAdapter (libvpx, libvpx, libvpx)"),
("VP9", "SimulcastEncoderAdapter (libvpx, libvpx, libvpx)"),
("AV1", "SimulcastEncoderAdapter (libaom, libaom, libaom)"),
("VP8", "SimulcastEncoderAdapter (libvpx)"),
("VP9", "SimulcastEncoderAdapter (libvpx)"),
("AV1", "SimulcastEncoderAdapter (libaom)"),
],
)
def test_simulcast(setup, video_codec_type, expected_implementation):
Expand Down

0 comments on commit c86d0bf

Please sign in to comment.