`wiki/tests/test_parser/TestWikiVideo/test_video_not_exist`

- In returned doc.text, replace unicode non-breaking-space with
regular space :wq
This commit is contained in:
Smith Ellis 2024-09-20 13:33:14 -04:00
Родитель 1919c0c979
Коммит b2621b57b0
Не найден ключ, соответствующий данной подписи
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -501,7 +501,7 @@ class TestWikiVideo(TestCase):
"""Video does not exist.""" """Video does not exist."""
p = WikiParser() p = WikiParser()
doc = pq(p.parse("[[V:404]]", locale="fr")) doc = pq(p.parse("[[V:404]]", locale="fr"))
self.assertEqual("La vidéo « 404 » nexiste pas.", doc.text()) self.assertEqual("La vidéo « 404 » nexiste pas.", doc.text().replace("\xa0", " "))
def test_video_modal(self): def test_video_modal(self):
"""Video modal defaults for plcaeholder and text.""" """Video modal defaults for plcaeholder and text."""