diff --git a/ietf/ietfauth/tests.py b/ietf/ietfauth/tests.py index 210e44877..11363f1ba 100644 --- a/ietf/ietfauth/tests.py +++ b/ietf/ietfauth/tests.py @@ -833,6 +833,7 @@ class OpenIDConnectTests(TestCase): for key in [ 'email', 'family_name', 'given_name', 'meeting', 'name', 'roles', 'ticket_type', 'reg_type', 'affiliation', 'picture', ]: self.assertIn(key, userinfo) + self.assertTrue(userinfo[key]) self.assertIn('remote', set(userinfo['reg_type'].split())) self.assertNotIn('hackathon', set(userinfo['reg_type'].split())) diff --git a/ietf/ietfauth/utils.py b/ietf/ietfauth/utils.py index fbd7f298b..03b9d9a77 100644 --- a/ietf/ietfauth/utils.py +++ b/ietf/ietfauth/utils.py @@ -227,7 +227,7 @@ def openid_userinfo(claims, user): oidc_provider.lib.claims.StandardScopeClaims.info_profile = ( 'Basic profile', - 'Access to your basic datatracker information: Name, photo.' + 'Access to your basic datatracker information: Name and photo (if present).' ) class OidcExtraScopeClaims(oidc_provider.lib.claims.ScopeClaims): diff --git a/release-coverage.json.gz b/release-coverage.json.gz index 5e57aa53e..d22a38339 100644 Binary files a/release-coverage.json.gz and b/release-coverage.json.gz differ