diff --git a/Lib/test/test_minidom.py b/Lib/test/test_minidom.py index 3c47b0b1da5..8a63535e2fc 100644 --- a/Lib/test/test_minidom.py +++ b/Lib/test/test_minidom.py @@ -229,7 +229,7 @@ def _testElementReprAndStrUnicode(): def _testElementReprAndStrUnicodeNS(): dom=Document() el=dom.appendChild( - dom.createElementNS( u"http://www.slashdot.org", u"slash:abc" )) + dom.createElementNS( u"http://www.slashdot.org", u"slash:abc" )) string1=repr( el ) string2=str( el ) confirm( string1==string2 )