diff options
author | Paul Prescod <prescod@prescod.net> | 2000-09-19 19:33:02 (GMT) |
---|---|---|
committer | Paul Prescod <prescod@prescod.net> | 2000-09-19 19:33:02 (GMT) |
commit | 4c799191a2019d21fbeca07ab459751ec857ef0c (patch) | |
tree | efc8c633fe20f5b2d391be6a3e5d63d6e65f2c54 /Lib/test/test_minidom.py | |
parent | 8d27f898b2a601039859cc12e105f567e5d0e946 (diff) | |
download | cpython-4c799191a2019d21fbeca07ab459751ec857ef0c.zip cpython-4c799191a2019d21fbeca07ab459751ec857ef0c.tar.gz cpython-4c799191a2019d21fbeca07ab459751ec857ef0c.tar.bz2 |
Fix test errors.
Diffstat (limited to 'Lib/test/test_minidom.py')
-rw-r--r-- | Lib/test/test_minidom.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_minidom.py b/Lib/test/test_minidom.py index bc62ec3..05612b2 100644 --- a/Lib/test/test_minidom.py +++ b/Lib/test/test_minidom.py @@ -26,6 +26,7 @@ Node._debug=1 def testParseFromFile(): from StringIO import StringIO dom=parse( StringIO( open( tstfile ).read() ) ) + dom.unlink() confirm(isinstance(dom,Document)) def testGetElementsByTagName( ): |