We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e0d018 commit aef4689Copy full SHA for aef4689
tests/rtc/test_e2e.py
@@ -510,9 +510,7 @@ async def publish_and_receive():
510
assert len(frame.payload) == PAYLOAD_SIZE
511
assert frame.user_timestamp is not None
512
latency = (int(time.time() * 1000) - frame.user_timestamp) / 1000.0
513
- assert latency < 5.0, (
514
- f"Timestamp latency too high: {latency}"
515
- )
+ assert latency < 5.0, f"Timestamp latency too high: {latency}"
516
recv_count += 1
517
await push_task
518
return recv_count
0 commit comments