Removed redundant definition of urls in the auth tests.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17142 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Aymeric Augustin 2011-11-22 07:44:26 +00:00
parent 02a1b9a93e
commit 658abb0859
1 changed files with 0 additions and 2 deletions

View File

@ -302,7 +302,6 @@ class LoginTest(AuthViewsTestCase):
class LoginURLSettings(AuthViewsTestCase): class LoginURLSettings(AuthViewsTestCase):
urls = 'django.contrib.auth.tests.urls'
def setUp(self): def setUp(self):
super(LoginURLSettings, self).setUp() super(LoginURLSettings, self).setUp()
@ -361,7 +360,6 @@ class LoginURLSettings(AuthViewsTestCase):
class LogoutTest(AuthViewsTestCase): class LogoutTest(AuthViewsTestCase):
urls = 'django.contrib.auth.tests.urls'
def confirm_logged_out(self): def confirm_logged_out(self):
self.assertTrue(SESSION_KEY not in self.client.session) self.assertTrue(SESSION_KEY not in self.client.session)