From cc2a5c9d581bd3e7c5b2bb23f7b0545c063ceacc Mon Sep 17 00:00:00 2001 From: Chris Coutinho Date: Wed, 15 Oct 2025 11:36:54 +0200 Subject: [PATCH] test: Inc delay for alice --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 8afc629..a13018d 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -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()) }