Skip to content

Commit b9f7074

Browse files
committed
Remove debug print from test.
1 parent b224e0f commit b9f7074

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/lxml/tests/test_htmlparser.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,6 @@ def test_xhtml_as_html_as_xml(self):
661661
b'<html xmlns="http://www.w3.org/1999/xhtml"></html>'
662662
)
663663
root = html.fromstring(xhtml)
664-
print(root.attrib)
665664
result = etree.tostring(root)
666665
self.assertEqual(result, b'<html xmlns="http://www.w3.org/1999/xhtml"/>')
667666

@@ -673,7 +672,6 @@ def test_xhtml_as_html_as_xml(self):
673672
b'<html xmlns="http://www.w3.org/1999/xhtml"></html>'
674673
)
675674
root = html.fromstring(xhtml)
676-
print(root.attrib)
677675
result = etree.tostring(root)
678676
self.assertEqual(result, b'<html xmlns="http://www.w3.org/1999/xhtml"/>')
679677
"""

0 commit comments

Comments
 (0)