From d1dd6b7a8fe5cd86ce36de9561182f9b55cb98b6 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Tue, 30 Mar 2021 18:34:33 +0200 Subject: [PATCH] core: fix tests for property mapping API Signed-off-by: Jens Langhammer --- authentik/core/tests/test_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authentik/core/tests/test_api.py b/authentik/core/tests/test_api.py index 88ea051bd..f9454103c 100644 --- a/authentik/core/tests/test_api.py +++ b/authentik/core/tests/test_api.py @@ -29,5 +29,5 @@ class TestPropertyMappingAPI(APITestCase): }, ) self.assertJSONEqual( - response.content.decode(), {"result": dumps({"foo": "bar"})} + response.content.decode(), {"result": dumps({"foo": "bar"}), "successful": True} )