Commit 32b00aba authored by Jim Fulton's avatar Jim Fulton

Merge remote-tracking branch 'origin/master' into storage-byte-appreciation

Conflicts:
	doc/guide/transactions-and-threading.rst
parents 1ebbdf77 cc1f9222
......@@ -228,8 +228,8 @@ class BasicStorage:
self._storage.checkCurrentSerialInTransaction(oid, tid, t)
self._storage.tpc_vote(t)
except POSException.ReadConflictError as v:
self.assertTrue(v.oid) == oid
self.assertTrue(v.serials == (tid2, tid))
self.assertEqual(v.oid, oid)
self.assertEqual(v.serials, (tid2, tid))
else:
if 0: self.assertTrue(False, "No conflict error")
......
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