summaryrefslogtreecommitdiff
path: root/tests/oauth2/rfc6749/clients/test_service_application.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/oauth2/rfc6749/clients/test_service_application.py
parentaee9bffc796f279c4fcec7cbce2c8c9940b920a6 (diff)
downloadoauthlib-a1057f9a82dd77e46aebaa217816af2c5759bab3.tar.gz
Sorted tests import per isort 4.3.21
Diffstat (limited to 'tests/oauth2/rfc6749/clients/test_service_application.py')
-rw-r--r--tests/oauth2/rfc6749/clients/test_service_application.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/oauth2/rfc6749/clients/test_service_application.py b/tests/oauth2/rfc6749/clients/test_service_application.py
index 6f48e23..b97d855 100644
--- a/tests/oauth2/rfc6749/clients/test_service_application.py
+++ b/tests/oauth2/rfc6749/clients/test_service_application.py
@@ -1,14 +1,14 @@
# -*- coding: utf-8 -*-
import os
from time import time
+from unittest.mock import patch
import jwt
-from unittest.mock import patch
from oauthlib.common import Request
from oauthlib.oauth2 import ServiceApplicationClient
-from ....unittest import TestCase
+from tests.unittest import TestCase
class ServiceApplicationClientTest(TestCase):