[Zope3-checkins] CVS: Zope3/src/zodb/storage/tests - test_storage_api.py:1.8
Barry Warsaw
barry@wooz.org
Fri, 28 Feb 2003 10:12:38 -0500
Update of /cvs-repository/Zope3/src/zodb/storage/tests
In directory cvs.zope.org:/tmp/cvs-serv9283
Modified Files:
test_storage_api.py
Log Message:
FullRecoveryTest.tearDown(): Be sure to close the self._dst storage
otherwise rmtree'ing the storage directory will fail on Windows.
=== Zope3/src/zodb/storage/tests/test_storage_api.py 1.7 => 1.8 ===
--- Zope3/src/zodb/storage/tests/test_storage_api.py:1.7 Thu Feb 27 12:30:24 2003
+++ Zope3/src/zodb/storage/tests/test_storage_api.py Fri Feb 28 10:12:37 2003
@@ -66,6 +66,7 @@
def tearDown(self):
bdbmixin.FullTestBase.tearDown(self)
+ self._dst.close()
self._zap_dbhome(DST_DBHOME)
def new_dest(self):