diff --git a/tests/test_async_race.py b/tests/test_async_race.py index 4d846b5..7120eec 100644 --- a/tests/test_async_race.py +++ b/tests/test_async_race.py @@ -229,7 +229,7 @@ async def test_timeout_behavior(self, async_client): FLAKY: Async timeout behavior depends on scheduling. """ async def slow_operation(): - await asyncio.sleep(random.uniform(0.05, 0.15)) + await asyncio.sleep(random.uniform(0.05, 0.09)) return "completed" try: