[utils] Escape all HTML entities written in hexadecimal form
This commit is contained in:
parent
fbfcc2972b
commit
91757b0f37
2 changed files with 3 additions and 1 deletions
|
@ -200,6 +200,8 @@ class TestUtil(unittest.TestCase):
|
|||
|
||||
def test_unescape_html(self):
|
||||
self.assertEqual(unescapeHTML('%20;'), '%20;')
|
||||
self.assertEqual(unescapeHTML('/'), '/')
|
||||
self.assertEqual(unescapeHTML('/'), '/')
|
||||
self.assertEqual(
|
||||
unescapeHTML('é'), 'é')
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue