commit | 2710bc4b689453bffd5c594eb3a064bf1af79df4 | [log] [tgz] |
---|---|---|
author | Éric Araujo <merwok@netwok.org> | Wed Oct 05 02:35:09 2011 +0200 |
committer | Éric Araujo <merwok@netwok.org> | Wed Oct 05 02:35:09 2011 +0200 |
tree | 8dca3b5e67a5b27cbef694029889c4bece2e3d6d | |
parent | 2e4a2b6434ed340cdbf987cf98a2b46fe4d04650 [diff] [blame] |
Fix typo and case in a recently added test
diff --git a/Lib/test/test_minidom.py b/Lib/test/test_minidom.py index ecf05dd..cb1c60c 100644 --- a/Lib/test/test_minidom.py +++ b/Lib/test/test_minidom.py
@@ -439,7 +439,7 @@ dom.unlink() 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>' dom = parseString(str) dom2 = parseString(dom.toprettyxml())