Skip to content

Commit 949ebd2

Browse files
committed
One more claim name change.
1 parent 55859f6 commit 949ebd2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/test_tandem_10_oauth2_token_exchange.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,8 @@ def create_endpoint(self):
190190
"client_id": "client_1",
191191
"redirect_uris": ["https://example.com/cb"],
192192
"client_salt": "salted_peanuts_cooking",
193-
"token_endpoint_auth_method": "client_secret_post",
194-
"response_types": ["code", "token", "code id_token", "id_token"],
193+
"token_endpoint_auth_methods_supported": ["client_secret_post"],
194+
"response_types_supported": ["code", "token", "code id_token", "id_token"],
195195
"allowed_scopes": ["openid", "profile", "offline_access"],
196196
}
197197
client_2_config = {
@@ -200,8 +200,8 @@ def create_endpoint(self):
200200
"client_secret": "hemligtlösenord",
201201
"redirect_uris": ["https://example.com/cb"],
202202
"client_salt": "salted_peanuts_cooking",
203-
"token_endpoint_auth_method": "client_secret_post",
204-
"response_types": ["code", "token", "code id_token", "id_token"],
203+
"token_endpoint_auth_methods_supported": ["client_secret_post"],
204+
"response_types_supported": ["code", "token", "code id_token", "id_token"],
205205
"allowed_scopes": ["openid", "profile", "offline_access"],
206206
}
207207
self.client_1 = Client(client_type='oauth2', config=client_1_config,

0 commit comments

Comments
 (0)