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..e978be3 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) @@ -143,7 +143,7 @@ def _(parser): parser.add_argument("--debug", type=bool, default=False) -class MVP1dot2Test(HttpUser): +class MVP1dot3Test(HttpUser): def on_start(self): self.client.verify = False