aboutsummaryrefslogtreecommitdiff
path: root/tests/test_jwt.py
diff options
context:
space:
mode:
authorPat Ferate <pferate@users.noreply.github.com>2016-08-11 13:25:56 -0700
committerJon Wayne Parrott <jonwayne@google.com>2016-08-11 13:25:56 -0700
commitc6b30bf420b3e63ed086c1fecad4b7aa2adb5089 (patch)
treeb0ecb30b9ad67faad3fe8a2d8ba3c3bcc3cbbcfe /tests/test_jwt.py
parente4ad1beeb482016ed6276b4c0c6aee8a6f49b9ef (diff)
downloadoauth2client-c6b30bf420b3e63ed086c1fecad4b7aa2adb5089.tar.gz
Clean up imports (#625)
* Treat `tests` as part of the local package * Import modules instead of objects Some imports that slipped by last time this was cleaned up.
Diffstat (limited to 'tests/test_jwt.py')
-rw-r--r--tests/test_jwt.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_jwt.py b/tests/test_jwt.py
index 4ac0495..9125c93 100644
--- a/tests/test_jwt.py
+++ b/tests/test_jwt.py
@@ -28,7 +28,7 @@ from oauth2client import crypt
from oauth2client import file as file_module
from oauth2client import service_account
from oauth2client import transport
-from . import http_mock
+from tests import http_mock
__author__ = 'jcgregorio@google.com (Joe Gregorio)'