diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-06-12 01:52:24 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-06-12 01:52:24 +0700 |
commit | b4a3d461e4a00dfc60047b667aa3136c8b03eda8 (patch) | |
tree | a7caefe338ebec8d6a48047d34965488100d7971 /test | |
parent | 72b409559c984bb116015ada55acd38120b24cc0 (diff) |
[utils] Handle HTMLParseError in extract_attributes (closes #13349)
Diffstat (limited to 'test')
-rw-r--r-- | test/test_utils.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_utils.py b/test/test_utils.py index 41b094d89..2b93b3604 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -916,6 +916,8 @@ class TestUtil(unittest.TestCase): supports_outside_bmp = False if supports_outside_bmp: self.assertEqual(extract_attributes('<e x="Smile 😀!">'), {'x': 'Smile \U0001f600!'}) + # Malformed HTML should not break attributes extraction on older Python + self.assertEqual(extract_attributes('<mal"formed/>'), {}) def test_clean_html(self): self.assertEqual(clean_html('a:\nb'), 'a: b') |