Skip to content

Commit

Permalink
SQ -> Recognized unknown <link rel=...> tags specially
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfstr committed Dec 16, 2023
1 parent f4d7570 commit 2ba0177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_parse_html.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ def test_recognizes_href_attribute() -> None:
"""<div href="image.png"></div>""".encode('utf-8'),
html_parser_type=html_parser_type)
assert 'image.png' == link.relative_url
assert 'Unknown (div)' == link.type_title
assert 'Unknown Href (div)' == link.type_title
assert None == link.title
assert False == link.embedded

Expand Down

0 comments on commit 2ba0177

Please sign in to comment.