aboutsummaryrefslogtreecommitdiff
path: root/django_openid_auth/tests/test_models.py
diff options
context:
space:
mode:
Diffstat (limited to 'django_openid_auth/tests/test_models.py')
-rw-r--r--django_openid_auth/tests/test_models.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/django_openid_auth/tests/test_models.py b/django_openid_auth/tests/test_models.py
index 28fb1de..d9a48c8 100644
--- a/django_openid_auth/tests/test_models.py
+++ b/django_openid_auth/tests/test_models.py
@@ -26,7 +26,7 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
-import unittest
+from __future__ import unicode_literals
from django.contrib.auth.models import User
from django.test import TestCase
@@ -72,7 +72,3 @@ class UserOpenIDModelTestCase(TestCase):
self.assertFalse(
User.objects.get(username='someuser').has_perm(
'django_openid_auth.account_verified'))
-
-
-def suite():
- return unittest.TestLoader().loadTestsFromName(__name__)