From f4440d43def4e69fe01ff41f744c492d00e8462e Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 20 Aug 2024 06:45:09 +0200 Subject: [PATCH] chore: increase wait time on ws to avoid flukes --- tests/exchange_online/test_ccxt_ws_compat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/exchange_online/test_ccxt_ws_compat.py b/tests/exchange_online/test_ccxt_ws_compat.py index 78e6e317b..8083a926c 100644 --- a/tests/exchange_online/test_ccxt_ws_compat.py +++ b/tests/exchange_online/test_ccxt_ws_compat.py @@ -32,7 +32,7 @@ class TestCCXTExchangeWs: while True: # Don't start the test if we are too close to the end of the minute. - if dt_now().second < 50 and dt_now().second != 0: + if dt_now().second < 50 and dt_now().second > 1: break sleep(1)