We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ff36e6 commit 45cc61bCopy full SHA for 45cc61b
tests/test_html.py
@@ -66,7 +66,9 @@ def test_illegal_entities(self):
66
self.assertEqual(replace_entities("xy"), "xy")
67
self.assertEqual(replace_entities("xy", remove_illegal=False), "xy")
68
self.assertEqual(replace_entities("�"), "")
69
- self.assertEqual(replace_entities("�", remove_illegal=False), "�")
+ self.assertEqual(
70
+ replace_entities("�", remove_illegal=False), "�"
71
+ )
72
73
def test_browser_hack(self):
74
# check browser hack for numeric character references in the 80-9F range
0 commit comments