[Zope3-checkins] CVS: Zope/lib/python/ZODB/tests - testConnection.py:1.3

Jeremy Hylton jeremy at zope.com
Thu Feb 26 10:37:17 EST 2004


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

Modified Files:
	testConnection.py 
Log Message:
metaclass has no effect here


=== Zope/lib/python/ZODB/tests/testConnection.py 1.2 => 1.3 ===
--- Zope/lib/python/ZODB/tests/testConnection.py:1.2	Wed Feb 18 21:59:10 2004
+++ Zope/lib/python/ZODB/tests/testConnection.py	Thu Feb 26 10:37:12 2004
@@ -17,8 +17,6 @@
 import unittest
 from persistent import Persistent
 
-__metaclass__ = type
-
 class ConnectionDotAdd(unittest.TestCase):
 
     def setUp(self):
@@ -145,7 +143,6 @@
 class StubObject(Persistent):
     pass
 
-
 class StubTransaction:
     pass
 
@@ -265,5 +262,4 @@
 
 
 def test_suite():
-    s = unittest.makeSuite(ConnectionDotAdd, 'check')
-    return s
+    return unittest.makeSuite(ConnectionDotAdd, 'check')




More information about the Zope3-Checkins mailing list