[Zodb-checkins] CVS: ZODB3/ZEO/tests - testStart.py:1.7 testZEO.py:1.28

Jeremy Hylton jeremy@zope.com
Wed, 14 Aug 2002 13:00:37 -0400


Update of /cvs-repository/ZODB3/ZEO/tests
In directory cvs.zope.org:/tmp/cvs-serv2064/ZEO/tests

Modified Files:
	testStart.py testZEO.py 
Log Message:
removefs() needs errno


=== ZODB3/ZEO/tests/testStart.py 1.6 => 1.7 ===
--- ZODB3/ZEO/tests/testStart.py:1.6	Wed Aug 14 12:56:41 2002
+++ ZODB3/ZEO/tests/testStart.py	Wed Aug 14 13:00:36 2002
@@ -27,6 +27,8 @@
     from ZODB.tests.StorageTestBase import removefs
 except ImportError:
     # for compatibility with Zope 2.5 &c.
+    import errno
+    
     def removefs(base):
         """Remove all files created by FileStorage with path base."""
         for ext in '', '.old', '.tmp', '.lock', '.index', '.pack':


=== ZODB3/ZEO/tests/testZEO.py 1.27 => 1.28 ===
--- ZODB3/ZEO/tests/testZEO.py:1.27	Wed Aug 14 12:55:15 2002
+++ ZODB3/ZEO/tests/testZEO.py	Wed Aug 14 13:00:36 2002
@@ -36,6 +36,8 @@
     from ZODB.tests.StorageTestBase import removefs
 except ImportError:
     # for compatibility with Zope 2.5 &c.
+    import errno
+    
     def removefs(base):
         """Remove all files created by FileStorage with path base."""
         for ext in '', '.old', '.tmp', '.lock', '.index', '.pack':