From 2710bc4b689453bffd5c594eb3a064bf1af79df4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Araujo?= Date: Wed, 5 Oct 2011 02:35:09 +0200 Subject: [PATCH] Fix typo and case in a recently added test --- Lib/test/test_minidom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_minidom.py b/Lib/test/test_minidom.py index ecf05dd2e22..cb1c60cb26a 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())