diff options
| author | Luke Plant <L.Plant.98@cantab.net> | 2009-09-10 09:51:27 +0000 |
|---|---|---|
| committer | Luke Plant <L.Plant.98@cantab.net> | 2009-09-10 09:51:27 +0000 |
| commit | 4a5630fe75ac47556c7fd15adfa6a7d9c23d18c8 (patch) | |
| tree | e5a9bc0a1f3eea9a266060dbab5025361ced0b89 | |
| parent | bb9cc01b132dbde2461191dbb1035eaae4885051 (diff) | |
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
| -rw-r--r-- | django/contrib/auth/tests/__init__.py | 4 |
1 files changed, 0 insertions, 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, } |
