Skip to content

Commit aef4689

Browse files
committed
Format
1 parent 9e0d018 commit aef4689

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/rtc/test_e2e.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -510,9 +510,7 @@ async def publish_and_receive():
510510
assert len(frame.payload) == PAYLOAD_SIZE
511511
assert frame.user_timestamp is not None
512512
latency = (int(time.time() * 1000) - frame.user_timestamp) / 1000.0
513-
assert latency < 5.0, (
514-
f"Timestamp latency too high: {latency}"
515-
)
513+
assert latency < 5.0, f"Timestamp latency too high: {latency}"
516514
recv_count += 1
517515
await push_task
518516
return recv_count

0 commit comments

Comments
 (0)