aboutsummaryrefslogtreecommitdiff
path: root/tests/contrib/django_util/test_django_storage.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/contrib/django_util/test_django_storage.py')
-rw-r--r--tests/contrib/django_util/test_django_storage.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/contrib/django_util/test_django_storage.py b/tests/contrib/django_util/test_django_storage.py
index a608c94..8f76b18 100644
--- a/tests/contrib/django_util/test_django_storage.py
+++ b/tests/contrib/django_util/test_django_storage.py
@@ -16,10 +16,10 @@
# Mock a Django environment
import datetime
-import unittest
from django.db import models
import mock
+import unittest2
from oauth2client import GOOGLE_TOKEN_URI
from oauth2client.client import OAuth2Credentials
@@ -28,7 +28,7 @@ from oauth2client.contrib.django_util.storage import (
DjangoORMStorage as Storage)
-class TestStorage(unittest.TestCase):
+class TestStorage(unittest2.TestCase):
def setUp(self):
access_token = 'foo'
client_id = 'some_client_id'