From 1dc45fddc105153edaa1bcffa721022c27717a0e Mon Sep 17 00:00:00 2001 From: Noah Stapp Date: Fri, 25 Apr 2025 13:27:27 -0400 Subject: [PATCH] PYTHON-5322 - Increase test_streaming_protocol.TestStreamingProtocol test_monitor_waits_after_server_check_error timeout (#2315) --- 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 1206e7b2f..70ec49de8 100644 --- a/test/asynchronous/test_streaming_protocol.py +++ b/test/asynchronous/test_streaming_protocol.py @@ -172,7 +172,7 @@ class TestStreamingProtocol(AsyncIntegrationTest): # 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 acf7610c9..927230091 100644 --- a/test/test_streaming_protocol.py +++ b/test/test_streaming_protocol.py @@ -172,7 +172,7 @@ class TestStreamingProtocol(IntegrationTest): # 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):