From 658abb0859382a07f88b2fe8e77d6c0035fcd456 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Tue, 22 Nov 2011 07:44:26 +0000 Subject: [PATCH] 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 --- django/contrib/auth/tests/views.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/django/contrib/auth/tests/views.py b/django/contrib/auth/tests/views.py index 9fccb3eb83..a0be92fc15 100644 --- a/django/contrib/auth/tests/views.py +++ b/django/contrib/auth/tests/views.py @@ -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)