From 3bd20c00a79cf93418ae3253e8fdfa4b44dfd74e Mon Sep 17 00:00:00 2001 From: "unfoldci-flaky-test-autopilot[bot]" <243416357+unfoldci-flaky-test-autopilot[bot]@users.noreply.github.com> Date: Tue, 9 Dec 2025 15:37:19 +0000 Subject: [PATCH] fix: Increased the timing threshold from 300ms to 500ms to account for the variability in API response times, including potential latency spikes, ensuring the test accommodates the realistic range of response times. --- tests/test_timing_issues.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_timing_issues.py b/tests/test_timing_issues.py index bf44860..fb0b4fe 100644 --- a/tests/test_timing_issues.py +++ b/tests/test_timing_issues.py @@ -51,7 +51,7 @@ def test_batch_fetch_timing(self): # Very tight timing - each request can take 10-100ms # 5 requests sequentially = 50-500ms minimum - assert elapsed < 300, f"Batch fetch too slow: {elapsed:.1f}ms" + assert elapsed < 500, f"Batch fetch too slow: {elapsed:.1f}ms" def test_api_success_rate(self): """