diff --git a/django-testauth/tests.py b/django-testauth/tests.py index 50ea58f..03a014b 100644 --- a/django-testauth/tests.py +++ b/django-testauth/tests.py @@ -1,9 +1,9 @@ -from auth import DredditAuthBackend +from auth import TESTAuthBackend import unittest class AuthLogin(unittest.TestCase): def setUp(self): - self.auth = DredditAuthBackend() + self.auth = TESTAuthBackend() def testLogin(self): self.assertEquals(self.auth.authenticate(username='invaliduser', password='asdasd'), None)