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