summaryrefslogtreecommitdiff
path: root/tests/auth_tests/test_templates.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-02-05 15:56:52 -0500
committerTim Graham <timograham@gmail.com>2016-02-06 08:47:21 -0500
commit015fad9060a8a6fb273a33b8e8457e504ed26131 (patch)
treedc56db72ffaea2acbe5925a10c95021f7a26df39 /tests/auth_tests/test_templates.py
parentf8e865d78f9acb1ad976cffffb207d66ff8cef72 (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.py5
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):