We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf477c3 commit 0e8bb8cCopy full SHA for 0e8bb8c
test/test_token_verifier.py
@@ -29,7 +29,7 @@ def test_get_token_for_eddsa(self):
29
token_verifier_instance.get_key_uncached = mock_get_key_uncached
30
identity = token_verifier_instance.verify_token(authressCustomDomain=f"https://{customDomain}", token=access_key)
31
32
- mock_get_key_uncached.assert_called_once_with(f"https://{customDomain}/v1/clients/CLIENT/.well-known/openid-configuration/jwks?kid=KEY", "KEY")
+ mock_get_key_uncached.assert_called_once_with(f"https://{customDomain}/v1/clients/CLIENT/.well-known/openid-configuration/jwks?kid=KEY&iss={customDomain}", "KEY")
33
assert identity['iss'] == f'https://{customDomain}/v1/clients/CLIENT'
34
assert identity['sub'] == "CLIENT"
35
0 commit comments