Commit 97cada6a authored by Éric Araujo's avatar Éric Araujo

Fix typo and case in a recently added test

parent 3f77fc92
...@@ -439,7 +439,7 @@ class MinidomTest(unittest.TestCase): ...@@ -439,7 +439,7 @@ class MinidomTest(unittest.TestCase):
dom.unlink() dom.unlink()
self.confirm(domstr == str.replace("\n", "\r\n")) self.confirm(domstr == str.replace("\n", "\r\n"))
def test_toPrettyXML_perserves_content_of_text_node(self): def test_toprettyxml_preserves_content_of_text_node(self):
str = '<A>B</A>' str = '<A>B</A>'
dom = parseString(str) dom = parseString(str)
dom2 = parseString(dom.toprettyxml()) dom2 = parseString(dom.toprettyxml())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment