зеркало из https://github.com/mozilla/kitsune.git
Fix test failure in
`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:
Родитель
1919c0c979
Коммит
b2621b57b0
|
@ -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 » n’existe pas.", doc.text())
|
self.assertEqual("La vidéo « 404 » n’existe 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."""
|
||||||
|
|
Загрузка…
Ссылка в новой задаче