Skip to content

Commit

Permalink
💚 Fix tests that I forgot to update
Browse files Browse the repository at this point in the history
  • Loading branch information
sergei-maertens committed Dec 19, 2024
1 parent 2b6e23a commit 903c8f3
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def test_submission_with_zgw_backend_with_natuurlijk_persoon_initiator(self, m):
create_zaak_body["zaakgeometrie"],
{
"type": "Point",
"coordinates": [52.36673378967122, 4.893164274470299],
"coordinates": [4.893164274470299, 52.36673378967122],
},
)

Expand Down Expand Up @@ -528,7 +528,7 @@ def test_submission_with_zgw_backend_with_vestiging_and_kvk_initiator(self, m):
create_zaak_body["zaakgeometrie"],
{
"type": "Point",
"coordinates": [52.36673378967122, 4.893164274470299],
"coordinates": [4.893164274470299, 52.36673378967122],
},
)

Expand Down Expand Up @@ -815,7 +815,7 @@ def test_submission_with_zgw_backend_with_vestiging_initiator_kvk_only(self, m):
create_zaak_body["zaakgeometrie"],
{
"type": "Point",
"coordinates": [52.36673378967122, 4.893164274470299],
"coordinates": [4.893164274470299, 52.36673378967122],
},
)

Expand Down Expand Up @@ -1772,7 +1772,7 @@ def get_create_json_for_zaakobject(req, ctx):
"startAt": date.today().isoformat(),
"geometry": {
"type": "Point",
"coordinates": [52.36673378967122, 4.893164274470299],
"coordinates": [4.893164274470299, 52.36673378967122],
},
"endAt": None,
"registrationAt": date.today().isoformat(),
Expand Down

0 comments on commit 903c8f3

Please sign in to comment.