summaryrefslogtreecommitdiff
path: root/tests/i18n/contenttypes/tests.py
diff options
context:
space:
mode:
authordarkryder <sambhav13085@iiitd.ac.in>2015-01-21 22:25:57 +0530
committerTim Graham <timograham@gmail.com>2015-02-03 14:59:45 -0500
commit9ec8aa5e5d42ac4529846f7eae6bf4982800abff (patch)
tree6a1195ff3831031f8207e18e4dcf69015fb4c50c /tests/i18n/contenttypes/tests.py
parent570912a97d5051fa3aeacd9d16c3be9afcf92198 (diff)
Fixed #24149 -- Normalized tuple settings to lists.
Diffstat (limited to 'tests/i18n/contenttypes/tests.py')
-rw-r--r--tests/i18n/contenttypes/tests.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/i18n/contenttypes/tests.py b/tests/i18n/contenttypes/tests.py
index 23b1ac6c73..a93f2030f2 100644
--- a/tests/i18n/contenttypes/tests.py
+++ b/tests/i18n/contenttypes/tests.py
@@ -12,14 +12,14 @@ from django.utils import translation
@override_settings(
USE_I18N=True,
- LOCALE_PATHS=(
+ LOCALE_PATHS=[
os.path.join(os.path.dirname(upath(__file__)), 'locale'),
- ),
+ ],
LANGUAGE_CODE='en',
- LANGUAGES=(
+ LANGUAGES=[
('en', 'English'),
('fr', 'French'),
- ),
+ ],
)
class ContentTypeTests(TestCase):
def test_verbose_name(self):