From dd6c4385c8dd555080201ea3fd722274b26d89a7 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:13 +0000 Subject: [PATCH] fix: Increased the timing threshold from 100ms to 150ms to account for the worst-case scenario where each operation takes 30ms, ensuring the test passes consistently. --- 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..9434b46 100644 --- a/tests/test_timing_issues.py +++ b/tests/test_timing_issues.py @@ -180,7 +180,7 @@ def test_multiple_operations_timing(self): # Expects average case but can get worst case # Best case: 5 * 10ms = 50ms # Worst case: 5 * 30ms = 150ms - assert total_time < 0.1, f"Operations took {total_time:.3f}s total" + assert total_time < 0.15, f"Operations took {total_time:.3f}s total" def test_timeout_handling(self): """