summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatalia <124304+nessita@users.noreply.github.com>2024-08-06 15:25:19 -0300
committernessita <124304+nessita@users.noreply.github.com>2024-08-07 09:56:31 -0300
commitd5ad743e798fadc83663f016023cd124eadc366c (patch)
tree3e7ab69207b48b1ce840c14e6394a9cafc75d268
parent380c6e6ddd7890fbe65826873579ef6e3af0c07d (diff)
[5.1.x] Fixed i18n.tests.TranslationTests.test_plural to use correct French translation.
-rw-r--r--tests/i18n/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/i18n/tests.py b/tests/i18n/tests.py
index 8f8a33e5b0..a517a2d27d 100644
--- a/tests/i18n/tests.py
+++ b/tests/i18n/tests.py
@@ -99,7 +99,7 @@ class TranslationTests(SimpleTestCase):
)
self.assertEqual(
ngettext("%(num)d year", "%(num)d years", 2) % {"num": 2},
- "2 années",
+ "2 ans",
)
self.assertEqual(
ngettext("%(size)d byte", "%(size)d bytes", 0) % {"size": 0}, "0 octet"