[Zope3-checkins] CVS: ZODB4/src/zodb/storage/tests - synchronization.py:1.6.24.1

Jeremy Hylton jeremy@zope.com
Wed, 18 Jun 2003 14:21:40 -0400


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()