Skip to content

Commit 66df77c

Browse files
committed
AMF
1 parent 1b7a158 commit 66df77c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_amd_amf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def test_amd_amf_sendonly_recvonly(setup, video_codec_type):
142142

143143
# outbound-rtp が無かったら StopIteration 例外が上がる
144144
outbound_rtp_stats = next(s for s in sendonly_stats if s.get("type") == "outbound-rtp")
145-
assert outbound_rtp_stats["encoderImplementation"] == "amd_amf"
145+
assert outbound_rtp_stats["encoderImplementation"] == "AMF"
146146
assert outbound_rtp_stats["bytesSent"] > 0
147147
assert outbound_rtp_stats["packetsSent"] > 0
148148

@@ -153,6 +153,6 @@ def test_amd_amf_sendonly_recvonly(setup, video_codec_type):
153153

154154
# inbound-rtp が無かったら StopIteration 例外が上がる
155155
inbound_rtp_stats = next(s for s in recvonly_stats if s.get("type") == "inbound-rtp")
156-
assert inbound_rtp_stats["decoderImplementation"] == "amd_amf"
156+
assert inbound_rtp_stats["decoderImplementation"] == "AMF"
157157
assert inbound_rtp_stats["bytesReceived"] > 0
158158
assert inbound_rtp_stats["packetsReceived"] > 0

0 commit comments

Comments
 (0)