From a77fb1f1a9a9295553d29f20b5cdb6bbeb22cb78 Mon Sep 17 00:00:00 2001 From: jonathan vanasco Date: Thu, 20 Sep 2018 17:56:27 -0400 Subject: * 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`. --- tests/oauth2/rfc6749/clients/test_web_application.py | 1 - 1 file changed, 1 deletion(-) (limited to 'tests/oauth2/rfc6749/clients/test_web_application.py') 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)) -- cgit v1.2.1