From: Éric Araujo Date: Tue, 4 Oct 2011 23:29:22 +0000 (+0200) Subject: Fix typo and case in a recently added test X-Git-Tag: v3.3.0a1~1289^2^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=63ba97b58608163e1fabf0e07c4f7a243a028e15;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 5c09c46b5e..126bdb15d2 100644 --- a/Lib/test/test_minidom.py +++ b/Lib/test/test_minidom.py @@ -446,7 +446,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())