summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-10-04 23:29:22 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-10-04 23:29:22 (GMT)
commit63ba97b58608163e1fabf0e07c4f7a243a028e15 (patch)
tree85c3b252a6b69de6a9b4b699733e8d84e7914add /Lib
parent58a9153c9f49fcfe58a9e91b08167ff3483b36f3 (diff)
downloadcpython-63ba97b58608163e1fabf0e07c4f7a243a028e15.zip
cpython-63ba97b58608163e1fabf0e07c4f7a243a028e15.tar.gz
cpython-63ba97b58608163e1fabf0e07c4f7a243a028e15.tar.bz2
Fix typo and case in a recently added test
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_minidom.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_minidom.py b/Lib/test/test_minidom.py
index 5c09c46..126bdb1 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 = '<A>B</A>'
dom = parseString(str)
dom2 = parseString(dom.toprettyxml())