1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

[4.1.x] Fixed #33888 -- Fixed get_select2_language() crash with no language activated.

Regression in 3079133c73.

Backport of 0638b4e23d from main
This commit is contained in:
Claude Paroz
2022-08-03 15:45:09 +02:00
committed by Mariusz Felisiak
parent a3ce58ac4c
commit 2ae024c744
3 changed files with 5 additions and 1 deletions

View File

@@ -179,6 +179,7 @@ class AutocompleteMixinTests(TestCase):
("sr-cyrl", "sr-Cyrl"),
("zh-hans", "zh-CN"),
("zh-hant", "zh-TW"),
(None, None),
)
for lang, select_lang in languages:
with self.subTest(lang=lang):