From 2c8945caa5eb32e4d7399bbe140d3f911d49fed3 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sun, 28 Jul 2024 13:15:14 -0700 Subject: Improve integration tests --- tools/test-integration.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/test-integration.py b/tools/test-integration.py index 29c741390..0dfa78f43 100755 --- a/tools/test-integration.py +++ b/tools/test-integration.py @@ -180,8 +180,9 @@ def send_message(port, message): s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect(('127.0.0.1', port)) s.send(message.encode('ascii')) - time.sleep(1.0) + time.sleep(0.5) s.close() + time.sleep(0.5) def get_protocols(cookie, device_id): params = { 'deviceId' : device_id, 'from' : '2000-01-01T00:00:00.000Z', 'to' : '2050-01-01T00:00:00.000Z' } -- cgit v1.2.3