From a41f9555e75bbf808c1d9c63b7f0f72db73814fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Tue, 23 Oct 2018 09:44:40 +0200 Subject: [PATCH] auth_oidc tests: adjust email claim to always be required (#26565) --- tests/test_auth_oidc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_auth_oidc.py b/tests/test_auth_oidc.py index cecabbae..b502c3da 100644 --- a/tests/test_auth_oidc.py +++ b/tests/test_auth_oidc.py @@ -135,6 +135,7 @@ def oidc_provider(request, db, oidc_provider_jwkset): OIDCClaimMapping.objects.create( provider=provider, claim='email', + required=True, attribute='email') OIDCClaimMapping.objects.create( provider=provider, -- 2.19.1