From 69c631674b503a1e9992e8c7849b973db333edad Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Fri, 19 Oct 2012 23:30:34 +0100 Subject: [PATCH] Update tests --- django-testauth/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)