Fix all wrong instances of "it's".
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 @@
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 @@
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 @@
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)