File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tests/oauth2/rfc6749/clients Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ class WebApplicationClientTest(TestCase):
45
45
46
46
body_code = "not=empty&grant_type=authorization_code&code={}&client_id={}" .format (code , client_id )
47
47
body_redirect = body_code + "&redirect_uri=http%3A%2F%2Fmy.page.com%2Fcallback"
48
- bode_code_verifier = body_code + "&code_verifier=code_verifier"
48
+ body_code_verifier = body_code + "&code_verifier=code_verifier"
49
49
body_kwargs = body_code + "&some=providers&require=extra+arguments"
50
50
51
51
response_uri = "https://client.example.com/cb?code=zzzzaaaa&state=xyz"
@@ -115,7 +115,7 @@ def test_request_body(self):
115
115
116
116
# With code verifier
117
117
body = client .prepare_request_body (body = self .body , code_verifier = self .code_verifier )
118
- self .assertFormBodyEqual (body , self .bode_code_verifier )
118
+ self .assertFormBodyEqual (body , self .body_code_verifier )
119
119
120
120
# With extra parameters
121
121
body = client .prepare_request_body (body = self .body , ** self .kwargs )
You can’t perform that action at this time.
0 commit comments