From e19045313ee70464be8168bd10ba54e2bbe24e49 Mon Sep 17 00:00:00 2001 From: Lars Holmberg Date: Tue, 13 Feb 2024 15:33:53 +0100 Subject: [PATCH] reorder stuff --- examples/distributor_ex.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/distributor_ex.py b/examples/distributor_ex.py index cfa8743..74ad344 100644 --- a/examples/distributor_ex.py +++ b/examples/distributor_ex.py @@ -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__":