[Zope-Checkins]
SVN: Zope/branches/2.10-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
Sat Jun 2 18:47:21 EDT 2007
Log message for revision 76183:
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.10-with-ZODB3.8/lib/python/tempstorage/tests/testTemporaryStorage.py
-=-
Modified: Zope/branches/2.10-with-ZODB3.8/lib/python/tempstorage/tests/testTemporaryStorage.py
===================================================================
--- Zope/branches/2.10-with-ZODB3.8/lib/python/tempstorage/tests/testTemporaryStorage.py 2007-06-02 22:22:03 UTC (rev 76182)
+++ Zope/branches/2.10-with-ZODB3.8/lib/python/tempstorage/tests/testTemporaryStorage.py 2007-06-02 22:47:21 UTC (rev 76183)
@@ -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