summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/i18n/tests.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/i18n/tests.py b/tests/i18n/tests.py
index 55cd35f7f3..5dd3593cac 100644
--- a/tests/i18n/tests.py
+++ b/tests/i18n/tests.py
@@ -313,12 +313,16 @@ class TranslationTests(SimpleTestCase):
('EN', 'en'),
('en-us', 'en_US'),
('EN-US', 'en_US'),
+ ('en_US', 'en_US'),
# With > 2 characters after the dash.
('sr-latn', 'sr_Latn'),
('sr-LATN', 'sr_Latn'),
+ ('sr_Latn', 'sr_Latn'),
# 3-char language codes.
('ber-MA', 'ber_MA'),
('BER-MA', 'ber_MA'),
+ ('BER_MA', 'ber_MA'),
+ ('ber_MA', 'ber_MA'),
# With private use subtag (x-informal).
('nl-nl-x-informal', 'nl_NL-x-informal'),
('NL-NL-X-INFORMAL', 'nl_NL-x-informal'),