summaryrefslogtreecommitdiff
path: root/tests/oauth2/rfc6749/endpoints/test_error_responses.py
diff options
context:
space:
mode:
authorJonathan Huot <JonathanHuot@users.noreply.github.com>2018-12-17 15:20:10 +0100
committerGitHub <noreply@github.com>2018-12-17 15:20:10 +0100
commit31461a0cdb47b0826e03c141a30885b9ab1b3dd5 (patch)
tree60a7d7460f44b9eeed06535bdbafd4a4d3d14ae0 /tests/oauth2/rfc6749/endpoints/test_error_responses.py
parent4bd39a770ce48d94ab8914463e20e9002e0b4869 (diff)
parente9c6f01bc6f89e6b90f2c9b61e6a9878d5612147 (diff)
downloadoauthlib-31461a0cdb47b0826e03c141a30885b9ab1b3dd5.tar.gz
Merge branch 'master' into 631-use-pytest
Diffstat (limited to 'tests/oauth2/rfc6749/endpoints/test_error_responses.py')
-rw-r--r--tests/oauth2/rfc6749/endpoints/test_error_responses.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/oauth2/rfc6749/endpoints/test_error_responses.py b/tests/oauth2/rfc6749/endpoints/test_error_responses.py
index ef05c4d..a249cb1 100644
--- a/tests/oauth2/rfc6749/endpoints/test_error_responses.py
+++ b/tests/oauth2/rfc6749/endpoints/test_error_responses.py
@@ -24,6 +24,7 @@ class ErrorResponseTest(TestCase):
def setUp(self):
self.validator = mock.MagicMock(spec=RequestValidator)
self.validator.get_default_redirect_uri.return_value = None
+ self.validator.get_code_challenge.return_value = None
self.web = WebApplicationServer(self.validator)
self.mobile = MobileApplicationServer(self.validator)
self.legacy = LegacyApplicationServer(self.validator)