[Zope-Checkins] CVS: Zope/lib/python/ZEO/tests - CommitLockTests.py:1.18 Cache.py:1.11

Jeremy Hylton jeremy at zope.com
Wed Feb 18 16:27:41 EST 2004


Update of /cvs-repository/Zope/lib/python/ZEO/tests
In directory cvs.zope.org:/tmp/cvs-serv27425

Modified Files:
	CommitLockTests.py Cache.py 
Log Message:
transactionalUndo -> undo

Missed two tests in earlier checkins.


=== Zope/lib/python/ZEO/tests/CommitLockTests.py 1.17 => 1.18 ===
--- Zope/lib/python/ZEO/tests/CommitLockTests.py:1.17	Wed Dec 24 11:02:01 2003
+++ Zope/lib/python/ZEO/tests/CommitLockTests.py	Wed Feb 18 16:27:40 2004
@@ -195,7 +195,7 @@
 
     def _begin_undo(self, trans_id, txn):
         rpc = self._storage._server.rpc
-        return rpc._deferred_call('transactionalUndo', trans_id, id(txn))
+        return rpc._deferred_call('undo', trans_id, id(txn))
 
     def _finish_undo(self, msgid):
         return self._storage._server.rpc._deferred_wait(msgid)


=== Zope/lib/python/ZEO/tests/Cache.py 1.10 => 1.11 ===
--- Zope/lib/python/ZEO/tests/Cache.py:1.10	Wed Dec 24 11:02:01 2003
+++ Zope/lib/python/ZEO/tests/Cache.py	Wed Feb 18 16:27:40 2004
@@ -42,7 +42,7 @@
         t.note('undo1')
         self._storage.tpc_begin(t)
 
-        tid, oids = self._storage.transactionalUndo(tid, t)
+        tid, oids = self._storage.undo(tid, t)
 
         # Make sure this doesn't load invalid data into the cache
         self._storage.load(oid, '')




More information about the Zope-Checkins mailing list