PYTHON-5322 - Increase test_streaming_protocol.TestStreamingProtocol test_monitor_waits_after_server_check_error timeout (#2315)

This commit is contained in:
Noah Stapp 2025-04-25 13:27:27 -04:00 committed by GitHub
parent 2ebd2aaecd
commit 1dc45fddc1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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):

View File

@ -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):