Skip to content

Commit ccb7b7c

Browse files
committed
Fix test formatting
1 parent 5f9c7db commit ccb7b7c

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

tests/test_info.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ def test_double_video_tracks(self):
8585
a=fmtp:101 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f
8686
a=rtpmap:102 rtx/90000
8787
a=fmtp:102 apt=101
88-
a=ice-ufrag:L7gR
89-
a=ice-pwd:U2QG4cQreTFF8SuMtDwczY
88+
a=ice-ufrag:1234
89+
a=ice-pwd:1234
9090
a=fingerprint:sha-256 70:3A:2D:37:3C:52:96:0E:10:F6:4D:7A:EB:18:38:1B:FD:CA:A5:90:D7:6C:DA:A9:39:76:C9:2F:FB:FF:56:0C
9191
a=setup:actpass"""
9292
info = parse_info_from_offer(lf2crlf(sdp))
@@ -115,8 +115,8 @@ def test_recvonly_audio(self):
115115
a=rtpmap:96 opus/48000/2
116116
a=rtpmap:0 PCMU/8000
117117
a=rtpmap:8 PCMA/8000
118-
a=ice-ufrag:kzUw
119-
a=ice-pwd:zltaGj4AKjLq17qay3XUA5
118+
a=ice-ufrag:1234
119+
a=ice-pwd:1234
120120
a=fingerprint:sha-256 40:4B:14:CF:70:B8:67:E1:B1:FF:7E:F9:22:6E:60:7D:73:B5:1E:38:4B:10:20:9C:CD:1C:47:02:52:ED:45:25
121121
a=setup:actpass"""
122122
info = parse_info_from_offer(lf2crlf(sdp))
@@ -137,8 +137,8 @@ def test_incoming_datachanel(self):
137137
a=mid:0
138138
a=sctpmap:5000 webrtc-datachannel 65535
139139
a=max-message-size:65536
140-
a=ice-ufrag:gJlk
141-
a=ice-pwd:UEbnBKS8SihwKnPcx0hiY1
140+
a=ice-ufrag:1234
141+
a=ice-pwd:1234
142142
a=fingerprint:sha-256 9B:C0:F3:35:8E:05:A1:15:DB:F8:39:0E:B0:E0:0C:EB:82:E4:B9:26:18:A6:43:2D:B9:9A:23:96:0A:59:B6:58
143143
a=setup:actpass"""
144144
info = parse_info_from_offer(lf2crlf(sdp))

tests/test_integration.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ async def __call__(self, offer: StreamingOffer):
3333
answer = await self.stream.start()
3434

3535
return answer
36-
36+
37+
3738
class TestStreamIntegration(unittest.IsolatedAsyncioTestCase):
3839
@parameterized.expand([
3940
# name, recv_cameras, recv_audio, messaging

0 commit comments

Comments
 (0)