[Zope-Checkins]
SVN: Zope/branches/2.9-with-ZODB3.8/lib/python/tempstorage/tests/testTemporaryStorage.py
DB.open() doesn't support the `mvcc` parameter in ZODB 3.8,
so `checkWithoutMVCCRaisesReadConflict` won't raise a
`ReadConflictError` either
Andreas Zeidler
az at zitc.de
Mon Jun 4 16:10:53 EDT 2007
Log message for revision 76331:
DB.open() doesn't support the `mvcc` parameter in ZODB 3.8, so `checkWithoutMVCCRaisesReadConflict` won't raise a `ReadConflictError` either
Changed:
U Zope/branches/2.9-with-ZODB3.8/lib/python/tempstorage/tests/testTemporaryStorage.py
-=-
Modified: Zope/branches/2.9-with-ZODB3.8/lib/python/tempstorage/tests/testTemporaryStorage.py
===================================================================
--- Zope/branches/2.9-with-ZODB3.8/lib/python/tempstorage/tests/testTemporaryStorage.py 2007-06-04 20:10:15 UTC (rev 76330)
+++ Zope/branches/2.9-with-ZODB3.8/lib/python/tempstorage/tests/testTemporaryStorage.py 2007-06-04 20:10:52 UTC (rev 76331)
@@ -56,7 +56,7 @@
def doreadconflict(self, db, mvcc):
tm1 = transaction.TransactionManager()
- conn = db.open(mvcc=mvcc, transaction_manager=tm1)
+ conn = db.open(transaction_manager=tm1)
r1 = conn.root()
obj = MinPO('root')
r1["p"] = obj
@@ -66,7 +66,7 @@
# start a new transaction with a new connection
tm2 = transaction.TransactionManager()
- cn2 = db.open(mvcc=mvcc, transaction_manager=tm2)
+ cn2 = db.open(transaction_manager=tm2)
r2 = cn2.root()
self.assertEqual(r1._p_serial, r2._p_serial)
@@ -85,10 +85,6 @@
obj.child1
return obj
- def checkWithoutMVCCRaisesReadConflict(self):
- db = DB(self._storage)
- self.assertRaises(ReadConflictError, self.doreadconflict, db, False)
-
def checkWithMVCCDoesntRaiseReadConflict(self):
db = DB(self._storage)
ob = self.doreadconflict(db, True)
More information about the Zope-Checkins
mailing list