summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Huot <jonathan.huot@thomsonreuters.com>2019-02-25 21:45:05 +0100
committerJonathan Huot <jonathan.huot@thomsonreuters.com>2019-07-04 11:17:19 +0200
commit1ef4209f71d6abe20e71a65a4b9d1141205b087e (patch)
tree0d1c0f7f9de3578419f3437830208cf4cbf9e220
parent3ccaeb128156a2ab4519f177bf8811c89513862a (diff)
downloadoauthlib-1ef4209f71d6abe20e71a65a4b9d1141205b087e.tar.gz
Added missing import after test moved
-rw-r--r--tests/openid/connect/core/grant_types/test_hybrid.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/openid/connect/core/grant_types/test_hybrid.py b/tests/openid/connect/core/grant_types/test_hybrid.py
index 8964053..0aa0add 100644
--- a/tests/openid/connect/core/grant_types/test_hybrid.py
+++ b/tests/openid/connect/core/grant_types/test_hybrid.py
@@ -1,13 +1,16 @@
# -*- coding: utf-8 -*-
from __future__ import absolute_import, unicode_literals
-from oauthlib.openid.connect.core.grant_types.hybrid import HybridGrant
+import mock
+
+from oauthlib.oauth2.rfc6749 import errors
+from oauthlib.oauth2.rfc6749.tokens import BearerToken
+from oauthlib.openid.connect.core.grant_types.hybrid import HybridGrant
from tests.oauth2.rfc6749.grant_types.test_authorization_code import \
AuthorizationCodeGrantTest
from .test_authorization_code import OpenIDAuthCodeTest
-
class OpenIDHybridInterferenceTest(AuthorizationCodeGrantTest):
"""Test that OpenID don't interfere with normal OAuth 2 flows."""