Commit 975214e8 authored by Jeremy Hylton's avatar Jeremy Hylton

metaclass has no effect here

parent 52dc3a30
......@@ -17,8 +17,6 @@
import unittest
from persistent import Persistent
__metaclass__ = type
class ConnectionDotAdd(unittest.TestCase):
def setUp(self):
......@@ -145,7 +143,6 @@ class ConnectionDotAdd(unittest.TestCase):
class StubObject(Persistent):
pass
class StubTransaction:
pass
......@@ -265,5 +262,4 @@ class StubDatabase:
def test_suite():
s = unittest.makeSuite(ConnectionDotAdd, 'check')
return s
return unittest.makeSuite(ConnectionDotAdd, 'check')
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment