Skip to content

Commit

Permalink
reorder stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberw committed Feb 13, 2024
1 parent ec292ce commit e190453
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/distributor_ex.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ class MyUser(HttpUser):

@task
def my_task(self) -> None:
customer: Dict = next(distributors["customers"])
product: List[str] = next(distributors["products"])
self.client.get(f"/?customer={customer['ssn']}&product={product[0]}")
customer: Dict = next(distributors["customers"])
self.client.get(f"/?product={product[0]}&customer={customer['ssn']}")


if __name__ == "__main__":
Expand Down

0 comments on commit e190453

Please sign in to comment.