[Zodb-checkins] CVS: Zope3/src/zodb/storage/tests - undo.py:1.4

Jeremy Hylton jeremy@zope.com
Tue, 4 Feb 2003 17:21:07 -0500


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

Modified Files:
	undo.py 
Log Message:
Revert previous checkin.  It was supposed to happen on a branch.


=== Zope3/src/zodb/storage/tests/undo.py 1.3 => 1.4 ===
--- Zope3/src/zodb/storage/tests/undo.py:1.3	Tue Feb  4 17:15:09 2003
+++ Zope3/src/zodb/storage/tests/undo.py	Tue Feb  4 17:21:04 2003
@@ -7,7 +7,6 @@
 import types
 
 from zodb import interfaces
-from zodb.storage.interfaces import IUndoStorage
 from zodb.ztransaction import Transaction
 from zodb.utils import u64, p64, z64
 from zodb.db import DB
@@ -68,9 +67,6 @@
         for txn in iter:
             for rec in txn:
                 pass
-
-    def checkIUndoStorage(self):
-        self.assert_(IUndoStorage.isImplementedBy(self._storage))
 
     def checkSimpleTransactionalUndo(self):
         eq = self.assertEqual