Commit 94f9723e authored by Barry Warsaw's avatar Barry Warsaw

checkTransactionalUndoAfterPack(): Removed two tests that weren't

really testing what we're interested in (they were testing the
equality of the exact layout of the undoInfo() -- not interesting).
parent f1771335
...@@ -446,8 +446,6 @@ class TransactionalUndoStorage: ...@@ -446,8 +446,6 @@ class TransactionalUndoStorage:
# Make some basic assertions about the undo information now # Make some basic assertions about the undo information now
info2 = self._storage.undoInfo() info2 = self._storage.undoInfo()
eq(len(info2), 2) eq(len(info2), 2)
eq(info2[0], info[0])
eq(info2[1], info[1])
# And now attempt to undo the last transaction # And now attempt to undo the last transaction
t = Transaction() t = Transaction()
self._storage.tpc_begin(t) self._storage.tpc_begin(t)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment