From: Guido van Rossum Date: Fri, 22 Sep 2000 09:23:08 +0000 (+0000) Subject: Get rid of the one tab in the file. X-Git-Tag: v2.0b2~135 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c77593d31a3fcd16f7d2c3ce9bd5fe13b70b6124;p=python Get rid of the one tab in the file. Closes Bug #115054. --- diff --git a/Lib/test/test_minidom.py b/Lib/test/test_minidom.py index 3c47b0b1da..8a63535e2f 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 )