diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2011-11-22 07:44:26 +0000 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2011-11-22 07:44:26 +0000 |
| commit | 658abb0859382a07f88b2fe8e77d6c0035fcd456 (patch) | |
| tree | c3e6673482594e041921c28782870d51adf68796 | |
| parent | 02a1b9a93e2ec7cc3bb87f2d38529b36eca65701 (diff) | |
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
| -rw-r--r-- | django/contrib/auth/tests/views.py | 2 |
1 files changed, 0 insertions, 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) |
