[Zodb-checkins] CVS: ZODB4/src/zodb/storage/tests - test_autopack.py:1.2.4.1

Barry Warsaw barry@wooz.org
Thu, 23 Jan 2003 14:03:04 -0500


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

Modified Files:
      Tag: new-pickle-branch
	test_autopack.py 
Log Message:
_mk_dbhome(): Because of the refactoring TestAutopackBase doesn't need
this method any more.


=== ZODB4/src/zodb/storage/tests/test_autopack.py 1.2 => 1.2.4.1 ===
--- ZODB4/src/zodb/storage/tests/test_autopack.py:1.2	Wed Dec 25 09:12:20 2002
+++ ZODB4/src/zodb/storage/tests/test_autopack.py	Thu Jan 23 14:03:01 2003
@@ -54,14 +54,6 @@
         while packtime == storage._autopacker._nextcheck:
             time.sleep(1)
 
-    def _mk_dbhome(self, dir):
-        # Create the storage
-        os.mkdir(dir)
-        try:
-            return self.ConcreteStorage(dir, config=self._config())
-        except:
-            self._zap_dbhome(dir)
-            raise
 
 
 class TestAutopack(TestAutopackBase):