From 9e57b1efb5205bd94462e9de35254ec5ea6eb04e Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Thu, 4 Jun 2020 09:11:37 +0200 Subject: Fixed #30134 -- Ensured unlocalized numbers are string representation in templates. --- tests/i18n/tests.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tests') diff --git a/tests/i18n/tests.py b/tests/i18n/tests.py index 9b2d1258bc..affda21fb4 100644 --- a/tests/i18n/tests.py +++ b/tests/i18n/tests.py @@ -1218,6 +1218,7 @@ class FormattingTests(SimpleTestCase): for use_l10n in [True, False]: with self.subTest(use_l10n=use_l10n), self.settings( USE_L10N=use_l10n, + DECIMAL_SEPARATOR=',', USE_THOUSAND_SEPARATOR=True, THOUSAND_SEPARATOR='°', NUMBER_GROUPING=2, -- cgit v1.3