chore: increase wait time on ws to avoid flukes

This commit is contained in:
Matthias 2024-08-20 06:45:09 +02:00
parent 201a5c06fe
commit f4440d43de

View File

@ -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)