fix unit tests

This commit is contained in:
Jakub Miazek
2024-05-12 19:52:51 +02:00
parent 5d5ea60ca6
commit a6cceeef73
3 changed files with 4 additions and 4 deletions

View File

@@ -5,9 +5,9 @@ class Stuff(HttpUser):
wait_time = between(1, 3)
@task
def test_find(self):
def find_stuff(self):
self.client.get("/v1/stuff/string")
@task
def test_find_pool(self):
def find_stuff_with_pool(self):
self.client.get("/v1/stuff/pool/string")