diff options
Diffstat (limited to 'tests/test_sqlite.py')
| -rw-r--r-- | tests/test_sqlite.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/test_sqlite.py b/tests/test_sqlite.py index c04ef97cd0..6bce452c79 100644 --- a/tests/test_sqlite.py +++ b/tests/test_sqlite.py @@ -22,9 +22,8 @@ DATABASES = { } SECRET_KEY = "django_tests_secret_key" -# To speed up tests under SQLite we use the MD5 hasher as the default one. -# This should not be needed under other databases, as the relative speedup -# is only marginal there. + +# Use a fast hasher to speed up tests. PASSWORD_HASHERS = ( 'django.contrib.auth.hashers.MD5PasswordHasher', ) |
