From 903c8f39a6a2c7f7c3fe2a5198735b9ccd3de462 Mon Sep 17 00:00:00 2001 From: Sergei Maertens Date: Thu, 19 Dec 2024 14:20:59 +0100 Subject: [PATCH] :green_heart: Fix tests that I forgot to update --- .../registrations/contrib/zgw_apis/tests/test_backend.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/openforms/registrations/contrib/zgw_apis/tests/test_backend.py b/src/openforms/registrations/contrib/zgw_apis/tests/test_backend.py index 5a39bfc857..18928add9b 100644 --- a/src/openforms/registrations/contrib/zgw_apis/tests/test_backend.py +++ b/src/openforms/registrations/contrib/zgw_apis/tests/test_backend.py @@ -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], }, ) @@ -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], }, ) @@ -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], }, ) @@ -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(),