diff options
| author | darkryder <sambhav13085@iiitd.ac.in> | 2015-01-21 22:25:57 +0530 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-02-03 14:59:45 -0500 |
| commit | 9ec8aa5e5d42ac4529846f7eae6bf4982800abff (patch) | |
| tree | 6a1195ff3831031f8207e18e4dcf69015fb4c50c /tests/test_sqlite.py | |
| parent | 570912a97d5051fa3aeacd9d16c3be9afcf92198 (diff) | |
Fixed #24149 -- Normalized tuple settings to lists.
Diffstat (limited to 'tests/test_sqlite.py')
| -rw-r--r-- | tests/test_sqlite.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_sqlite.py b/tests/test_sqlite.py index 6bce452c79..18d413a682 100644 --- a/tests/test_sqlite.py +++ b/tests/test_sqlite.py @@ -24,6 +24,6 @@ DATABASES = { SECRET_KEY = "django_tests_secret_key" # Use a fast hasher to speed up tests. -PASSWORD_HASHERS = ( +PASSWORD_HASHERS = [ 'django.contrib.auth.hashers.MD5PasswordHasher', -) +] |
