From 559f90c5a6578c521cf0464f829db6f1d4ae8b6a Mon Sep 17 00:00:00 2001 From: Ignacio Fiorentino Date: Thu, 7 Apr 2016 16:36:42 -0300 Subject: [PATCH] Remove pdb. --- oidc_provider/tests/test_token_endpoint.py | 1 - 1 file changed, 1 deletion(-) diff --git a/oidc_provider/tests/test_token_endpoint.py b/oidc_provider/tests/test_token_endpoint.py index 31a2de7..652d8ad 100644 --- a/oidc_provider/tests/test_token_endpoint.py +++ b/oidc_provider/tests/test_token_endpoint.py @@ -451,7 +451,6 @@ class TokenTestCase(TestCase): Test Proof Key for Code Exchange by OAuth Public Clients. https://tools.ietf.org/html/rfc7636 """ - import pdb;pdb.set_trace() code = create_code(user=self.user, client=self.client, scope=['openid', 'email'], nonce=FAKE_NONCE, is_authentication=True, code_challenge=FAKE_CODE_CHALLENGE, code_challenge_method='S256')