test: Increase stagger delay 0.5 -> 2s

This commit is contained in:
Chris Coutinho
2025-10-15 11:07:06 +02:00
parent fb3063e94e
commit 26f8deff17
+2 -2
View File
@@ -1385,9 +1385,9 @@ async def all_oauth_tokens(
browser, shared_oauth_client_credentials, username, config["password"]
)
# Create tasks for all users with staggered starts (0.5s apart)
# Create tasks for all users with staggered starts (2.0s apart)
tasks = {
username: get_token_with_delay(username, config, idx * 0.5)
username: get_token_with_delay(username, config, idx * 2.0)
for idx, (username, config) in enumerate(test_users_setup.items())
}