[Zope3-checkins] CVS: Zope3/lib/python/ZODB/tests - testTransaction.py:1.12

Guido van Rossum guido@python.org
Tue, 19 Nov 2002 14:10:37 -0500


Update of /cvs-repository/Zope3/lib/python/ZODB/tests
In directory cvs.zope.org:/tmp/cvs-serv23707/lib/python/ZODB/tests

Modified Files:
	testTransaction.py 
Log Message:
Remove redundancies from base class lists, to avoid MRO errors in Python 2.3.

=== Zope3/lib/python/ZODB/tests/testTransaction.py 1.11 => 1.12 ===
--- Zope3/lib/python/ZODB/tests/testTransaction.py:1.11	Thu Jul 25 16:56:56 2002
+++ Zope3/lib/python/ZODB/tests/testTransaction.py	Tue Nov 19 14:10:06 2002
@@ -97,7 +97,7 @@
                              self.wrap_test(BasicTests,
                                             "testCommitAndAbort")
 
-class AllTests(TransactionTestBase, BasicTests, SubtransTests):
+class AllTests(TransactionTestBase, SubtransTests):
 
     def testSavepointAndRollback(self):
         self.root["a"] = MinPO()