[Zope3-checkins] CVS: Zope3/src/zodb/storage/tests - test_autopack.py:1.12

Tim Peters tim.one@comcast.net
Fri, 14 Mar 2003 17:02:27 -0500


Update of /cvs-repository/Zope3/src/zodb/storage/tests
In directory cvs.zope.org:/tmp/cvs-serv3735/src/zodb/storage/tests

Modified Files:
	test_autopack.py 
Log Message:
RaceConditionBase.tearDown():  this needed to call its base class
tearDown() too, in order to close the open files.  Fixes many test
errors under 2.3 Windows (this Berkeley test doesn't run at all under
2.2 Windows).


=== Zope3/src/zodb/storage/tests/test_autopack.py 1.11 => 1.12 ===
--- Zope3/src/zodb/storage/tests/test_autopack.py:1.11	Fri Mar 14 12:55:26 2003
+++ Zope3/src/zodb/storage/tests/test_autopack.py	Fri Mar 14 17:02:26 2003
@@ -264,6 +264,7 @@
     def tearDown(self):
         # clean up any outstanding transactions
         get_transaction().abort()
+        BerkeleyTestBase.tearDown(self)
 
     def _getPackThread(self, storage):
         raise NotImplementedError