[Zodb-checkins] CVS: Zope3/src/zodb/storage/tests - test_file.py:1.10.4.1 test_fsindex.py:1.2.26.1

Jeremy Hylton jeremy at zope.com
Thu Apr 17 16:52:56 EDT 2003


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

Modified Files:
      Tag: jeremy-new-pack-branch
	test_file.py test_fsindex.py 
Log Message:
Fixup ref to fsdump and fsindex.


=== Zope3/src/zodb/storage/tests/test_file.py 1.10 => 1.10.4.1 ===
--- Zope3/src/zodb/storage/tests/test_file.py:1.10	Thu Mar 20 18:01:41 2003
+++ Zope3/src/zodb/storage/tests/test_file.py	Thu Apr 17 15:52:55 2003
@@ -67,8 +67,8 @@
             copy = zodb.storage.file.FileStorage('FileStorageTests.fs',
                                                  read_only=True)
         except:
-            from zodb.storage.fsdump import Dumper
-            Dumper("FileStorageTests.fs").dump()
+            from zodb.storage.file.dump import dump
+            dump("FileStorageTests.fs")
             raise
 
         L1 = copy._index.items()


=== Zope3/src/zodb/storage/tests/test_fsindex.py 1.2 => 1.2.26.1 ===
--- Zope3/src/zodb/storage/tests/test_fsindex.py:1.2	Wed Dec 25 09:12:20 2002
+++ Zope3/src/zodb/storage/tests/test_fsindex.py	Thu Apr 17 15:52:55 2003
@@ -13,7 +13,7 @@
 ##############################################################################
 
 import unittest, sys
-from zodb.storage.fsindex import fsIndex
+from zodb.storage.file.index import fsIndex
 from zodb.utils import p64
 
 




More information about the Zodb-checkins mailing list