Skip to content

Commit

Permalink
Fix latitude error in test
Browse files Browse the repository at this point in the history
  • Loading branch information
pxwxnvermx committed Nov 19, 2024
1 parent 512b049 commit 8faecda
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def submit_form_for_random_entity(form_json):
duplicate_json = deepcopy(form_json)
duplicate_json["form"]["deliver"]["entity_id"] = str(uuid4())
# generate random locations for form submissions
duplicate_json["metadata"]["location"] = " ".join([str(random.uniform(10, 100)) for _ in range(4)])
duplicate_json["metadata"]["location"] = " ".join([str(random.uniform(-90, 90)) for _ in range(4)])
make_request(api_client, duplicate_json, mobile_user_with_connect_link)

payment_units = opportunity.paymentunit_set.all()
Expand Down

0 comments on commit 8faecda

Please sign in to comment.