diff --git a/tests/test_macos.py b/tests/test_macos.py index 0095402..cc7a579 100644 --- a/tests/test_macos.py +++ b/tests/test_macos.py @@ -62,8 +62,8 @@ def test_macos_video_hwa_sendonly(setup, video_codec_type): @pytest.mark.parametrize( ("video_codec_type", "expected_implementation"), [ - ("H264", "SimulcastEncoderAdapter (VideoToolbox, VideoToolbox, VideoToolbox)"), - ("H265", "SimulcastEncoderAdapter (VideoToolbox, VideoToolbox, VideoToolbox)"), + ("H264", "SimulcastEncoderAdapter (VideoToolbox)"), + ("H265", "SimulcastEncoderAdapter (VideoToolbox)"), ], ) def test_macos_simulcast(setup, video_codec_type, expected_implementation): diff --git a/tests/test_openh264.py b/tests/test_openh264.py index 73b0c51..752acef 100644 --- a/tests/test_openh264.py +++ b/tests/test_openh264.py @@ -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): diff --git a/tests/test_simulcast.py b/tests/test_simulcast.py index 292c388..e41862d 100644 --- a/tests/test_simulcast.py +++ b/tests/test_simulcast.py @@ -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):