File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -334,7 +334,7 @@ def test_fetch_access_token(self):
334
334
assert token ["token_type" ] == "Bearer"
335
335
336
336
337
- def access_and_refresh_token_request_compliance_fix_test (session , client_secret : str ):
337
+ def access_and_refresh_token_request_compliance_fix_test (session , client_secret ):
338
338
def _non_compliant_header (url , headers , body ):
339
339
headers ["X-Client-Secret" ] = client_secret
340
340
return url , headers , body
@@ -373,7 +373,9 @@ def setUp(self):
373
373
self .addCleanup (mocker .stop )
374
374
375
375
session = OAuth2Session ()
376
- self .fixed_session = access_and_refresh_token_request_compliance_fix_test (session , self .value_to_test_for )
376
+ self .fixed_session = access_and_refresh_token_request_compliance_fix_test (
377
+ session , self .value_to_test_for
378
+ )
377
379
378
380
def test_access_token (self ):
379
381
token = self .fixed_session .fetch_token (
You can’t perform that action at this time.
0 commit comments