diff --git a/scenarios/mvp-1dot1.py b/scenarios/mvp-1dot1.py index 532ef5e..4e50eb6 100644 --- a/scenarios/mvp-1dot1.py +++ b/scenarios/mvp-1dot1.py @@ -111,7 +111,7 @@ def on_test_start(environment, **_kwargs): if not isinstance(environment.runner, WorkerRunner): users = [] for i in range(1, int(environment.runner.target_user_count)+1): - users.append(f"test{i}") + users.append(f"t{i}") worker_count = environment.runner.worker_count chunk_size = int(len(users) / worker_count) diff --git a/scenarios/mvp.py b/scenarios/mvp.py index 95b525e..99ef35c 100644 --- a/scenarios/mvp.py +++ b/scenarios/mvp.py @@ -119,7 +119,7 @@ def on_test_start(environment, **_kwargs): if not isinstance(environment.runner, WorkerRunner): users = [] for i in range(1, int(environment.runner.target_user_count)+1): - users.append(f"test{i}") + users.append(f"t{i}") worker_count = environment.runner.worker_count chunk_size = int(len(users) / worker_count)