summaryrefslogtreecommitdiff
path: root/tests/oauth2/rfc6749/grant_types/test_resource_owner_password.py
diff options
context:
space:
mode:
authorJonathan Huot <JonathanHuot@users.noreply.github.com>2020-04-22 16:31:44 +0200
committerGitHub <noreply@github.com>2020-04-22 16:31:44 +0200
commit6875e3ac513a3828c3328d4f585d4c38b2b2c698 (patch)
tree3ebf7d0a8b521f91a769e1f31c9bf8d4cc75e110 /tests/oauth2/rfc6749/grant_types/test_resource_owner_password.py
parent406653fc3018b8ae292234caef6df434cf612a52 (diff)
parent3e582846591e213ba8ec1780a5a5aadf69a090a2 (diff)
downloadoauthlib-6875e3ac513a3828c3328d4f585d4c38b2b2c698.tar.gz
Merge pull request #727 from antonrh/isort-integration
Diffstat (limited to 'tests/oauth2/rfc6749/grant_types/test_resource_owner_password.py')
-rw-r--r--tests/oauth2/rfc6749/grant_types/test_resource_owner_password.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/oauth2/rfc6749/grant_types/test_resource_owner_password.py b/tests/oauth2/rfc6749/grant_types/test_resource_owner_password.py
index 42f0aa6..294e27b 100644
--- a/tests/oauth2/rfc6749/grant_types/test_resource_owner_password.py
+++ b/tests/oauth2/rfc6749/grant_types/test_resource_owner_password.py
@@ -1,15 +1,15 @@
# -*- coding: utf-8 -*-
import json
-
from unittest import mock
from oauthlib.common import Request
from oauthlib.oauth2.rfc6749 import errors
-from oauthlib.oauth2.rfc6749.grant_types import \
- ResourceOwnerPasswordCredentialsGrant
+from oauthlib.oauth2.rfc6749.grant_types import (
+ ResourceOwnerPasswordCredentialsGrant,
+)
from oauthlib.oauth2.rfc6749.tokens import BearerToken
-from ....unittest import TestCase
+from tests.unittest import TestCase
class ResourceOwnerPasswordCredentialsGrantTest(TestCase):