diff options
Diffstat (limited to 'tests/i18n/contenttypes/tests.py')
| -rw-r--r-- | tests/i18n/contenttypes/tests.py | 8 |
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): |
