From 576552f9583268e0bd975f24e8a68f5eb665a89a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89loi=20Rivard?= Date: Mon, 22 Apr 2024 17:03:04 +0200 Subject: [PATCH] tests: fix unit tests --- web/tests/conftest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/web/tests/conftest.py b/web/tests/conftest.py index 26eed23..443f420 100644 --- a/web/tests/conftest.py +++ b/web/tests/conftest.py @@ -47,6 +47,7 @@ def iam_client(iam_server): scope=["openid", "profile", "email"], preconsent=True, ) + iam_client.save() iam_client.audience = [iam_client] iam_client.save() yield iam_client