From e90aa6abdaec141188e38c6f0e2923c8187e6e8c Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 4 Jul 2025 14:39:19 +0200 Subject: [PATCH] test: Increased asyncio.sleep for ws_ohlcv test --- tests/exchange/test_exchange_ws.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/exchange/test_exchange_ws.py b/tests/exchange/test_exchange_ws.py index cde15a2c3..02cf761b8 100644 --- a/tests/exchange/test_exchange_ws.py +++ b/tests/exchange/test_exchange_ws.py @@ -79,7 +79,7 @@ async def test_exchangews_ohlcv(mocker, time_machine, caplog): watch_call_count += 1 # Signal that a watch call happened watch_call_event.set() - await asyncio.sleep(0.01) # Minimal delay for realism + await asyncio.sleep(0.1) return MagicMock() async def wait_for_condition(condition_func, timeout=5.0, check_interval=0.01):