From 0a504ff8bb731eb471a9f413d4cd56a879ffee02 Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Sun, 19 Jan 2025 13:03:57 -0500 Subject: [PATCH] increase test_recv_timeout delay --- tests/test_recv_timeout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_recv_timeout.py b/tests/test_recv_timeout.py index 099a504..73b1b19 100644 --- a/tests/test_recv_timeout.py +++ b/tests/test_recv_timeout.py @@ -46,7 +46,7 @@ def test_recv_timeout_vs_keepalive(self) -> None: mqtt_client.ping() now = time.monotonic() - assert recv_timeout <= (now - start) <= (keep_alive + 0.2) + assert recv_timeout <= (now - start) <= (keep_alive + 0.5) if __name__ == "__main__":