[Python-checkins] python/dist/src/Lib/test test_minidom.py,1.34,1.35
fdrake@users.sourceforge.net
fdrake@users.sourceforge.net
Thu, 25 Jul 2002 13:40:31 -0700
Update of /cvsroot/python/python/dist/src/Lib/test
In directory usw-pr-cvs1:/tmp/cvs-serv23616
Modified Files:
test_minidom.py
Log Message:
Remove duplicate checks of the Node.allnodes variable.
Index: test_minidom.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_minidom.py,v
retrieving revision 1.34
retrieving revision 1.35
diff -C2 -d -r1.34 -r1.35
*** test_minidom.py 23 Jul 2002 19:03:57 -0000 1.34
--- test_minidom.py 25 Jul 2002 20:40:28 -0000 1.35
***************
*** 354,358 ****
confirm(string1.find("slash:abc") != -1)
dom.unlink()
- confirm(len(Node.allnodes) == 0)
def testAttributeRepr():
--- 354,357 ----
***************
*** 362,366 ****
confirm(str(node) == repr(node))
dom.unlink()
- confirm(len(Node.allnodes) == 0)
def testTextNodeRepr(): pass
--- 361,364 ----
***************
*** 372,376 ****
dom.unlink()
confirm(str == domstr)
- confirm(len(Node.allnodes) == 0)
def testProcessingInstruction(): pass
--- 370,373 ----