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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2710bc4b689453bffd5c594eb3a064bf1af79df4;p=thirdparty%2FPython%2Fcpython.git Fix typo and case in a recently added test --- diff --git a/Lib/test/test_minidom.py b/Lib/test/test_minidom.py index ecf05dd2e226..cb1c60cb26a7 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())