auth/test: increase delay limit for Windows

This commit is contained in:
Peter Bieringer
2026-05-30 10:49:21 +02:00
parent 91a47520ef
commit e26a2cfcf4

View File

@@ -301,7 +301,7 @@ class TestBaseAuthRequests(BaseTest):
delay = .3
delay_min = delay * 0.9 # no random jitter during test
delay_max = delay + 0.2 # no random jitter during test
if sys.platform == "darwin": # no reliable sleep times
if sys.platform == "darwin" or sys.platform == 'win32': # no reliable sleep times
delay_max = delay_max * 1.5
time_begin = datetime.datetime.now()