[Zodb-checkins] CVS: ZODB4/src/zodb/storage/tests -
synchronization.py:1.6.24.1
Jeremy Hylton
jeremy at zope.com
Wed Jun 18 15:21:40 EDT 2003
Update of /cvs-repository/ZODB4/src/zodb/storage/tests
In directory cvs.zope.org:/tmp/cvs-serv5533/src/zodb/storage/tests
Modified Files:
Tag: ZODB3-2-merge
synchronization.py
Log Message:
Remove use of apply.
=== ZODB4/src/zodb/storage/tests/synchronization.py 1.6 => 1.6.24.1 ===
--- ZODB4/src/zodb/storage/tests/synchronization.py:1.6 Thu Mar 20 18:01:41 2003
+++ ZODB4/src/zodb/storage/tests/synchronization.py Wed Jun 18 14:21:40 2003
@@ -76,7 +76,7 @@
def verifyNotCommitting(self, callable, *args):
args = (StorageTransactionError, callable) + args
- apply(self.assertRaises, args)
+ self.assertRaises(*args)
def verifyWrongTrans(self, callable, *args):
t = Transaction()
More information about the Zodb-checkins
mailing list