CVS: Products/ParsedXML/NodePath/tests - test_nodepath.py:1.6

Martijn Faassen <[email protected]> Tue, 27 Apr 2004 14:09:21 -0400
Newsgroups gmane.comp.web.zope.parsed-xml
Message-ID <[email protected]>
Update of /cvs-repository/Products/ParsedXML/NodePath/tests
In directory cvs.zope.org:/tmp/cvs-serv6334/NodePath/tests

Modified Files:
	test_nodepath.py 
Log Message:
Getting rid of obsolete delegation through StrIO module.


=== Products/ParsedXML/NodePath/tests/test_nodepath.py 1.5 => 1.6 ===
--- Products/ParsedXML/NodePath/tests/test_nodepath.py:1.5	Tue Apr 27 09:06:21 2004
+++ Products/ParsedXML/NodePath/tests/test_nodepath.py	Tue Apr 27 14:08:32 2004
@@ -21,7 +21,7 @@
 
 def DOMParseString(xml):
     # FIXME: change this if using another DOM
-    from Products.ParsedXML.StrIO import StringIO
+    from StringIO import StringIO
     from Products.ParsedXML.DOM import ExpatBuilder
     file = StringIO(xml)
     return ExpatBuilder.parse(file)