summaryrefslogtreecommitdiff
path: root/tests/oauth2/rfc6749/endpoints/test_base_endpoint.py
diff options
context:
space:
mode:
authorJonathan Huot <JonathanHuot@users.noreply.github.com>2019-07-04 09:34:36 +0200
committerGitHub <noreply@github.com>2019-07-04 09:34:36 +0200
commit4112c2acb4b55b4dff679e83dc645e072e65ca65 (patch)
tree409c39dd1b0edb7e7e8de7cd487da754aa25a2bc /tests/oauth2/rfc6749/endpoints/test_base_endpoint.py
parent588abb50010d434c0de5ad9c479d666b7b6ab0bd (diff)
parentd7b90fc841694f126ec63500ea8f74330c4672eb (diff)
downloadoauthlib-4112c2acb4b55b4dff679e83dc645e072e65ca65.tar.gz
Merge branch 'master' into oidc-userinfo
Diffstat (limited to 'tests/oauth2/rfc6749/endpoints/test_base_endpoint.py')
-rw-r--r--tests/oauth2/rfc6749/endpoints/test_base_endpoint.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/oauth2/rfc6749/endpoints/test_base_endpoint.py b/tests/oauth2/rfc6749/endpoints/test_base_endpoint.py
index 4f78d9b..bf04a42 100644
--- a/tests/oauth2/rfc6749/endpoints/test_base_endpoint.py
+++ b/tests/oauth2/rfc6749/endpoints/test_base_endpoint.py
@@ -25,7 +25,7 @@ class BaseEndpointTest(TestCase):
server = Server(validator)
server.catch_errors = True
h, b, s = server.create_token_response(
- 'https://example.com?grant_type=authorization_code&code=abc'
+ 'https://example.com', body='grant_type=authorization_code&code=abc'
)
self.assertIn("server_error", b)
self.assertEqual(s, 500)