[Zope3-checkins] CVS: Zope3/src/zope/app/process/tests - test_bootstrap.py:1.7.10.1

Jim Fulton jim at zope.com
Fri Jan 16 10:44:02 EST 2004


Update of /cvs-repository/Zope3/src/zope/app/process/tests
In directory cvs.zope.org:/tmp/cvs-serv19071/src/zope/app/process/tests

Modified Files:
      Tag: zope3-zodb3-devel-branch
	test_bootstrap.py 
Log Message:
Various changes to get tests passing.


=== Zope3/src/zope/app/process/tests/test_bootstrap.py 1.7 => 1.7.10.1 ===
--- Zope3/src/zope/app/process/tests/test_bootstrap.py:1.7	Mon Sep 22 15:45:39 2003
+++ Zope3/src/zope/app/process/tests/test_bootstrap.py	Fri Jan 16 10:43:31 2004
@@ -18,8 +18,7 @@
 
 import unittest
 from transaction import get_transaction
-from zodb.db import DB
-from zodb.storage.memory import MemoryFullStorage
+from ZODB.tests.util import DB
 from zope.app.content.folder import rootFolder
 from zope.app.interfaces.content.folder import IRootFolder
 from zope.app.interfaces.services.error import IErrorReportingService
@@ -47,8 +46,7 @@
 
     def setUp(self):
         PlacefulSetup.setUp(self)
-        self.storage = MemoryFullStorage("Memory Storage")
-        self.db = DB(self.storage)
+        self.db = DB()
 
     def tearDown(self):
         PlacefulSetup.tearDown(self)




More information about the Zope3-Checkins mailing list