diff options
| author | Tim Graham <timograham@gmail.com> | 2016-02-05 15:56:52 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-02-06 08:47:21 -0500 |
| commit | 015fad9060a8a6fb273a33b8e8457e504ed26131 (patch) | |
| tree | dc56db72ffaea2acbe5925a10c95021f7a26df39 /tests/auth_tests/test_templates.py | |
| parent | f8e865d78f9acb1ad976cffffb207d66ff8cef72 (diff) | |
Fixed #26175 -- Removed SHA1 password hashes in tests.
Diffstat (limited to 'tests/auth_tests/test_templates.py')
| -rw-r--r-- | tests/auth_tests/test_templates.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/auth_tests/test_templates.py b/tests/auth_tests/test_templates.py index 75c4e8b784..781ffcb735 100644 --- a/tests/auth_tests/test_templates.py +++ b/tests/auth_tests/test_templates.py @@ -10,10 +10,7 @@ from django.utils.encoding import force_bytes, force_text from django.utils.http import urlsafe_base64_encode -@override_settings( - PASSWORD_HASHERS=['django.contrib.auth.hashers.SHA1PasswordHasher'], - ROOT_URLCONF='auth_tests.urls', -) +@override_settings(ROOT_URLCONF='auth_tests.urls') class AuthTemplateTests(TestCase): def test_titles(self): |
