1
0
mirror of https://github.com/django/django.git synced 2025-10-24 14:16:09 +00:00

Fixed #24149 -- Normalized tuple settings to lists.

This commit is contained in:
darkryder
2015-01-21 22:25:57 +05:30
committed by Tim Graham
parent 570912a97d
commit 9ec8aa5e5d
120 changed files with 612 additions and 616 deletions

View File

@@ -1508,10 +1508,10 @@ class CacheHEADTest(TestCase):
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
},
},
LANGUAGES=(
LANGUAGES=[
('en', 'English'),
('es', 'Spanish'),
),
],
)
class CacheI18nTest(TestCase):