Skip to content
This repository has been archived by the owner on Dec 5, 2023. It is now read-only.

Commit

Permalink
Merge branch 'usersupdate' of github.com:microservices-demo/load-test…
Browse files Browse the repository at this point in the history
… into usersupdate
  • Loading branch information
idcrosby committed Aug 25, 2016
2 parents e857b0d + e16228f commit 2f4de8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion locustfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def createCustomer(self):
self.username = "test_user_" + str(uuid.uuid4())

self.password = "test_password"
customer = self.client.post("/customers", json={"firstName": "testUser_" + str(counter), "lastName": "Last_Name", "username": self.username})
customer = self.client.post("/register", json={"username": self.username, "password": self.password})

self.cust_id = customer.json()["id"]

Expand Down

0 comments on commit 2f4de8f

Please sign in to comment.