Skip to content

Commit

Permalink
💚 Fix tests that I forgot to update
Browse files Browse the repository at this point in the history
(cherry picked from commit 903c8f3)
  • Loading branch information
sergei-maertens committed Dec 19, 2024
1 parent a8c848f commit a16236b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,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 @@ -518,7 +518,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 @@ -803,7 +803,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 @@ -1748,7 +1748,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 a16236b

Please sign in to comment.