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

Commit

Permalink
added updated user tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonrichardsmith committed Aug 25, 2016
1 parent 53d05b4 commit e16228f
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 @@ -77,7 +77,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 e16228f

Please sign in to comment.