diff options
author | Georg Brandl <georg@python.org> | 2005-07-22 21:49:32 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2005-07-22 21:49:32 (GMT) |
commit | 7eb4b7d177adae5b5d0aefa6f54170b3967b2473 (patch) | |
tree | 9006926c7dc6c5ca522c2fdbf055a40f88fad2b1 /Lib/test/test_minidom.py | |
parent | 08c02dbb85a8eebe3395658260dec36dd4169381 (diff) | |
download | cpython-7eb4b7d177adae5b5d0aefa6f54170b3967b2473.zip cpython-7eb4b7d177adae5b5d0aefa6f54170b3967b2473.tar.gz cpython-7eb4b7d177adae5b5d0aefa6f54170b3967b2473.tar.bz2 |
Fix all wrong instances of "it's".
Diffstat (limited to 'Lib/test/test_minidom.py')
-rw-r--r-- | Lib/test/test_minidom.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_minidom.py b/Lib/test/test_minidom.py index a54fbd3..15581cc 100644 --- a/Lib/test/test_minidom.py +++ b/Lib/test/test_minidom.py @@ -1199,7 +1199,7 @@ def testSetIdAttribute(): and not a1.isId and a2.isId and not a3.isId) - # renaming an attribute should not affect it's ID-ness: + # renaming an attribute should not affect its ID-ness: doc.renameNode(a2, xml.dom.EMPTY_NAMESPACE, "an") confirm(e.isSameNode(doc.getElementById("w")) and a2.isId) @@ -1235,7 +1235,7 @@ def testSetIdAttributeNS(): confirm(a2.isId) confirm(not a3.isId) confirm(doc.getElementById("v") is None) - # renaming an attribute should not affect it's ID-ness: + # renaming an attribute should not affect its ID-ness: doc.renameNode(a2, xml.dom.EMPTY_NAMESPACE, "an") confirm(e.isSameNode(doc.getElementById("w")) and a2.isId) @@ -1271,7 +1271,7 @@ def testSetIdAttributeNode(): confirm(a2.isId) confirm(not a3.isId) confirm(doc.getElementById("v") is None) - # renaming an attribute should not affect it's ID-ness: + # renaming an attribute should not affect its ID-ness: doc.renameNode(a2, xml.dom.EMPTY_NAMESPACE, "an") confirm(e.isSameNode(doc.getElementById("w")) and a2.isId) |