summaryrefslogtreecommitdiff
path: root/Lib/test/test_minidom.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2005-07-22 21:49:32 +0000
committerGeorg Brandl <georg@python.org>2005-07-22 21:49:32 +0000
commit3a228851edb65d6cca3181dc124088072d835334 (patch)
treef48a65e80c7f7596d99b89d994cf35dd8f73869d /Lib/test/test_minidom.py
parent83328a75e819eff640f819e4658a18f7df68b220 (diff)
downloadcpython-3a228851edb65d6cca3181dc124088072d835334.tar.gz
Fix all wrong instances of "it's".
Diffstat (limited to 'Lib/test/test_minidom.py')
-rw-r--r--Lib/test/test_minidom.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_minidom.py b/Lib/test/test_minidom.py
index a54fbd3f32..15581ccfd2 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)