From: Éric Araujo Date: Wed, 5 Oct 2011 00:35:09 +0000 (+0200) Subject: Fix typo and case in a recently added test X-Git-Tag: v2.7.3rc1~423^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2710bc4b689453bffd5c594eb3a064bf1af79df4;p=python Fix typo and case in a recently added test --- diff --git a/Lib/test/test_minidom.py b/Lib/test/test_minidom.py index ecf05dd2e2..cb1c60cb26 100644 --- a/Lib/test/test_minidom.py +++ b/Lib/test/test_minidom.py @@ -439,7 +439,7 @@ class MinidomTest(unittest.TestCase): 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 = 'B' dom = parseString(str) dom2 = parseString(dom.toprettyxml())