Skip to content

Commit fb04eda

Browse files
authored
fix method names (ITISFoundation#2347)
1 parent cbcc3c2 commit fb04eda

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/performance/locust_files/platform_ping_test.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,25 +20,25 @@ def __init__(self, *args, **kwargs):
2020
super().__init__(*args, **kwargs)
2121

2222
@task(10)
23-
def get_services(self):
23+
def get_root(self):
2424
self.client.get(
2525
"",
2626
)
2727

2828
@task(10)
29-
def get_services_root_endpoint(self):
29+
def get_root_slash(self):
3030
self.client.get(
3131
"/",
3232
)
3333

3434
@task(1)
35-
def get_services_root_endpoint(self):
35+
def get_health(self):
3636
self.client.get(
3737
"/v0/health",
3838
)
3939

4040
def on_start(self):
41-
print("Created User ")
41+
print("Created locust user")
4242

4343
def on_stop(self):
44-
print("Stopping")
44+
print("Stopping locust user")

0 commit comments

Comments
 (0)