diff options
author | Guido van Rossum <guido@python.org> | 2000-09-22 09:23:08 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-09-22 09:23:08 (GMT) |
commit | c77593d31a3fcd16f7d2c3ce9bd5fe13b70b6124 (patch) | |
tree | 89b4b0adfca8eabc5807a069581aa3b488b43c10 /Lib/test/test_minidom.py | |
parent | 954eef7e51f11b97b4347eef443a19eda9ff4e6f (diff) | |
download | cpython-c77593d31a3fcd16f7d2c3ce9bd5fe13b70b6124.zip cpython-c77593d31a3fcd16f7d2c3ce9bd5fe13b70b6124.tar.gz cpython-c77593d31a3fcd16f7d2c3ce9bd5fe13b70b6124.tar.bz2 |
Get rid of the one tab in the file.
Closes Bug #115054.
Diffstat (limited to 'Lib/test/test_minidom.py')
-rw-r--r-- | Lib/test/test_minidom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_minidom.py b/Lib/test/test_minidom.py index 3c47b0b..8a63535 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 ) |