[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/Undo/tests - testZODBUndoManager.py:1.1.2.2

Jeremy Hylton jeremy@zope.com
Fri, 29 Mar 2002 17:26:12 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/Undo/tests
In directory cvs.zope.org:/tmp/cvs-serv24179

Modified Files:
      Tag: Zope-3x-branch
	testZODBUndoManager.py 
Log Message:
The DB no longer supports undoLog() to call undoInfo().


=== Zope3/lib/python/Zope/App/Undo/tests/testZODBUndoManager.py 1.1.2.1 => 1.1.2.2 ===
         self.data = list(testdata)
 
-    def undoLog(self):
+    def undoInfo(self):
         return tuple(self.data)
 
     def undo(self, id):
@@ -58,8 +58,6 @@
         expected = [d for d in expected if (d['id'] not in ('3','4','5'))]
         
         self.assertEqual(list(um.getUndoInfo()), expected)
-            
-    
 
 def test_suite():
     return TestSuite((