From 5ba789f782fc21cad89f5f9c724c47672b2c6b0e Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Mon, 6 Nov 2023 11:10:38 +0100 Subject: [PATCH] Updated single-packet timing --- tests/link.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/link.py b/tests/link.py index f9fa9c9..61a7a0f 100644 --- a/tests/link.py +++ b/tests/link.py @@ -140,7 +140,7 @@ class TestLink(unittest.TestCase): pstart = time.time() print("Sending "+str(num_packets)+" link packets of "+str(packet_size)+" bytes...") for i in range(0, num_packets): - time.sleep(0.001) + time.sleep(0.003) b += packet_size data = os.urandom(packet_size) start = time.time()