diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2017-04-29 15:58:45 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-29 15:58:45 +0800 |
commit | d19093bd50a0123b7d00c263b012d6d391814970 (patch) | |
tree | beeff14a9499d3a31dedd33cb12e35ec99f5bef9 /test/test_utils.py | |
parent | 24eb7c257807aceef713f6d01824cf600a9d6232 (diff) | |
parent | 9222d945107411ba657dab965fab63de8e8781b9 (diff) |
Merge pull request #12906 from Tithen-Firion/clean-html-fix
[utils] Fix inconsistent output of clean_html
Diffstat (limited to 'test/test_utils.py')
-rw-r--r-- | test/test_utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_utils.py b/test/test_utils.py index 4cd818850..9e1808e6b 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -899,6 +899,7 @@ class TestUtil(unittest.TestCase): def test_clean_html(self): self.assertEqual(clean_html('a:\nb'), 'a: b') self.assertEqual(clean_html('a:\n "b"'), 'a: "b"') + self.assertEqual(clean_html('a<br>\xa0b'), 'a\nb') def test_intlist_to_bytes(self): self.assertEqual( |