Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed Jul 31, 2012
1 parent 6b80a87 commit 46a2ddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lxml/tests/test_etree.py
Expand Up @@ -442,7 +442,7 @@ def test_strip_tags_and_remove(self):
self.assertEquals(_bytes('<div><h1>title</h1> foo <p>boo</p></div>'),
self.etree.tostring(root))
root.remove(root[0])
self.assertEquals(_bytes('<div>TEST<p>boo</p></div>'),
self.assertEquals(_bytes('<div><p>boo</p></div>'),
self.etree.tostring(root))

def test_pi(self):
Expand Down

0 comments on commit 46a2ddd

Please sign in to comment.