tests: do not clobber all hashing algorithms (fixes #22199)

This commit is contained in:
Benjamin Dauvergne 2018-03-01 15:43:10 +01:00
parent d645e3ee27
commit f6ff455fdf
1 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
import os
from authentic2.settings import PASSWORD_HASHERS
# use a faster hasing scheme for passwords
PASSWORD_HASHERS = [
'django.contrib.auth.hashers.UnsaltedMD5PasswordHasher',
]
PASSWORD_HASHERS = ('django.contrib.auth.hashers.UnsaltedMD5PasswordHasher',) + PASSWORD_HASHERS
LANGUAGE_CODE = 'en'
DATABASES = {