From 1e0a762b08ff89d9b05a342540644b06bcaf71fd Mon Sep 17 00:00:00 2001 From: Noah Stapp Date: Fri, 25 Apr 2025 13:15:40 -0400 Subject: [PATCH] PYTHON-5322 - Increase test_streaming_protocol.TestStreamingProtocol.test_monitor_waits_after_server_check_error timeout --- test/asynchronous/test_streaming_protocol.py | 2 +- test/test_streaming_protocol.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/asynchronous/test_streaming_protocol.py b/test/asynchronous/test_streaming_protocol.py index 1206e7b2fa..70ec49de80 100644 --- a/test/asynchronous/test_streaming_protocol.py +++ b/test/asynchronous/test_streaming_protocol.py @@ -172,7 +172,7 @@ async def test_monitor_waits_after_server_check_error(self): # 2504ms: application handshake succeeds # 2505ms: ping command succeeds self.assertGreaterEqual(duration, 2) - self.assertLessEqual(duration, 3.5) + self.assertLessEqual(duration, 4.0) @async_client_context.require_failCommand_appName async def test_heartbeat_awaited_flag(self): diff --git a/test/test_streaming_protocol.py b/test/test_streaming_protocol.py index acf7610c94..927230091f 100644 --- a/test/test_streaming_protocol.py +++ b/test/test_streaming_protocol.py @@ -172,7 +172,7 @@ def test_monitor_waits_after_server_check_error(self): # 2504ms: application handshake succeeds # 2505ms: ping command succeeds self.assertGreaterEqual(duration, 2) - self.assertLessEqual(duration, 3.5) + self.assertLessEqual(duration, 4.0) @client_context.require_failCommand_appName def test_heartbeat_awaited_flag(self):