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 5abb656 commit 23c3132Copy full SHA for 23c3132
1 file changed
tests/test_html.py
@@ -347,10 +347,11 @@ def test_document_parsed_from_plain_text_returns_plain_text():
347
root = HtmlDocument.get_root(html)
348
print("ROOT:")
349
print(root)
350
+ print('Body: ', root.find('body'))
351
parser = SECHTMLParser(root)
352
doc = parser.parse()
353
print("Parsed Document:")
- print(doc)
354
+ print('[' + doc + ']' + doc is None)
355
document = Document.parse(html)
356
assert document
357
assert len(document) == 1
0 commit comments