test: Inc delay for alice

This commit is contained in:
Chris Coutinho
2025-10-15 11:36:54 +02:00
parent 26f8deff17
commit cc2a5c9d58
+1 -1
View File
@@ -1387,7 +1387,7 @@ async def all_oauth_tokens(
# Create tasks for all users with staggered starts (2.0s apart)
tasks = {
username: get_token_with_delay(username, config, idx * 2.0)
username: get_token_with_delay(username, config, (idx + 1) * 2.0)
for idx, (username, config) in enumerate(test_users_setup.items())
}