[Zope3-checkins] CVS: Zope3/src/zodb/tests - test_zodb.py:1.1.2.2

Barry Warsaw barry@wooz.org
Mon, 23 Dec 2002 18:49:14 -0500


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

Modified Files:
      Tag: NameGeddon-branch
	test_zodb.py 
Log Message:
more fixes

move threadedasync.py from the top level into zodb/zeo since it was
causing problems otherwise, and it's only used by zeo now.


=== Zope3/src/zodb/tests/test_zodb.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zodb/tests/test_zodb.py:1.1.2.1	Mon Dec 23 14:30:52 2002
+++ Zope3/src/zodb/tests/test_zodb.py	Mon Dec 23 18:48:43 2002
@@ -15,7 +15,7 @@
 import unittest
 import tempfile
 
-import ZODB.DB, ZODB.FileStorage
+from zodb.storage.file import DB
 from zodb.utils import u64
 from zodb.tests.undo import TransactionalUndoDB
 from persistence.dict import PersistentDict
@@ -105,7 +105,7 @@
                 unittest.TestCase):
 
     def setUp(self):
-        self._db = ZODB.FileStorage.DB(_fsname, create=1)
+        self._db = DB(_fsname, create=1)
         self._conn = self._db.open()
         self._root = self._conn.root()