Release 2022.02.03

This commit is contained in:
pukkandan 2022-02-03 23:14:46 +05:30
parent d5a398988b
commit 28469edd7d
No known key found for this signature in database
GPG key ID: 0F00D95A001F4698
4 changed files with 85 additions and 7 deletions

View file

@ -1133,7 +1133,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:\n "b"'), 'a: "b"')
self.assertEqual(clean_html('a<br>\xa0b'), 'a\nb')
def test_intlist_to_bytes(self):