summaryrefslogtreecommitdiff
path: root/tests/oauth2/rfc6749/clients/test_web_application.py
diff options
context:
space:
mode:
authorjonathan vanasco <jonathan@2xlp.com>2018-09-20 17:56:27 -0400
committerjonathan vanasco <jonathan@2xlp.com>2018-09-20 17:56:27 -0400
commita77fb1f1a9a9295553d29f20b5cdb6bbeb22cb78 (patch)
treee3203b7e89f621aad6277b8a0fb05c630f978d1d /tests/oauth2/rfc6749/clients/test_web_application.py
parentcca36aa22ae3b26c5db72fa50f401ee757e8bcbd (diff)
downloadoauthlib-a77fb1f1a9a9295553d29f20b5cdb6bbeb22cb78.tar.gz
* changed "function definition" to "function signature" in two docstrings
* fixed some formatting issues in `prepare_token_request` docstring * slightly altered `prepare_token_request` in handling nontruthy values for `client_secret`.
Diffstat (limited to 'tests/oauth2/rfc6749/clients/test_web_application.py')
-rw-r--r--tests/oauth2/rfc6749/clients/test_web_application.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/oauth2/rfc6749/clients/test_web_application.py b/tests/oauth2/rfc6749/clients/test_web_application.py
index 3d9c188..092f93e 100644
--- a/tests/oauth2/rfc6749/clients/test_web_application.py
+++ b/tests/oauth2/rfc6749/clients/test_web_application.py
@@ -234,7 +234,6 @@ class WebApplicationClientTest(TestCase):
self.assertEqual(r4_params['client_id'], self.client_id)
self.assertEqual(r4_params['client_secret'], '')
-
# scenario 4b, `client_secret` is `None`
r4b = client.prepare_request_body(include_client_id=True, client_secret=None)
r4b_params = dict(urlparse.parse_qsl(r4b, keep_blank_values=True))