From 47e1ef1298331c6a76cf07cc1312998820bdaf5e Mon Sep 17 00:00:00 2001 From: Viktor van Wijk Date: Wed, 8 Jan 2025 09:09:22 +0100 Subject: [PATCH] :white_check_mark: [#4908] Fix test --- .../registrations/contrib/json_dump/tests/test_backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openforms/registrations/contrib/json_dump/tests/test_backend.py b/src/openforms/registrations/contrib/json_dump/tests/test_backend.py index 82b4fcd94b..b98e12788a 100644 --- a/src/openforms/registrations/contrib/json_dump/tests/test_backend.py +++ b/src/openforms/registrations/contrib/json_dump/tests/test_backend.py @@ -87,7 +87,7 @@ def test_submission_with_json_dump_backend(self): } res = json_plugin.register_submission(submission, json_form_options) - res_json = res["api_response"].json() + res_json = res["api_response"] self.assertEqual(res_json, expected_response)