From 4a5630fe75ac47556c7fd15adfa6a7d9c23d18c8 Mon Sep 17 00:00:00 2001 From: Luke Plant Date: Thu, 10 Sep 2009 09:51:27 +0000 Subject: [PATCH] Removed unnecessary keys in django.contrib.auth.test.__test__ Only doctest tests, and not TestCases, need to be in __test__ AFAICS. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11481 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/auth/tests/__init__.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/django/contrib/auth/tests/__init__.py b/django/contrib/auth/tests/__init__.py index 9a381ef93d..14428d0fc8 100644 --- a/django/contrib/auth/tests/__init__.py +++ b/django/contrib/auth/tests/__init__.py @@ -10,10 +10,6 @@ from django.contrib.auth.tests.tokens import TOKEN_GENERATOR_TESTS __test__ = { 'BASIC_TESTS': BASIC_TESTS, - 'PASSWORDRESET_TESTS': PasswordResetTest, 'FORM_TESTS': FORM_TESTS, 'TOKEN_GENERATOR_TESTS': TOKEN_GENERATOR_TESTS, - 'CHANGEPASSWORD_TESTS': ChangePasswordTest, - 'LOGIN_TESTS': LoginTest, - 'LOGOUT_TESTS': LogoutTest, }