summaryrefslogtreecommitdiff
path: root/tests/openid/connect/core/endpoints/test_openid_connect_params_handling.py
diff options
context:
space:
mode:
authorAnton Ruhlov <anton@paxful.com>2020-04-10 15:01:28 +0300
committerAnton Ruhlov <anton@paxful.com>2020-04-10 15:01:28 +0300
commita1057f9a82dd77e46aebaa217816af2c5759bab3 (patch)
treed14a0079d53f60b724a1e7ac743a7f9a45f07080 /tests/openid/connect/core/endpoints/test_openid_connect_params_handling.py
parentaee9bffc796f279c4fcec7cbce2c8c9940b920a6 (diff)
downloadoauthlib-a1057f9a82dd77e46aebaa217816af2c5759bab3.tar.gz
Sorted tests import per isort 4.3.21
Diffstat (limited to 'tests/openid/connect/core/endpoints/test_openid_connect_params_handling.py')
-rw-r--r--tests/openid/connect/core/endpoints/test_openid_connect_params_handling.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/openid/connect/core/endpoints/test_openid_connect_params_handling.py b/tests/openid/connect/core/endpoints/test_openid_connect_params_handling.py
index 98482e2..c55136f 100644
--- a/tests/openid/connect/core/endpoints/test_openid_connect_params_handling.py
+++ b/tests/openid/connect/core/endpoints/test_openid_connect_params_handling.py
@@ -1,11 +1,12 @@
from unittest import mock
+from urllib.parse import urlencode
from oauthlib.oauth2 import InvalidRequestError
-from oauthlib.oauth2.rfc6749.endpoints.authorization import \
- AuthorizationEndpoint
+from oauthlib.oauth2.rfc6749.endpoints.authorization import (
+ AuthorizationEndpoint,
+)
from oauthlib.oauth2.rfc6749.tokens import BearerToken
from oauthlib.openid.connect.core.grant_types import AuthorizationCodeGrant
-from urllib.parse import urlencode
from tests.unittest import TestCase