1
0
mirror of https://github.com/django/django.git synced 2024-12-24 10:05:46 +00:00

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

View File

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