Fix refleaks in test_with caused by reusing the same exception instance over and...
authorCollin Winter <collinw@gmail.com>
Sat, 1 Sep 2007 20:29:04 +0000 (20:29 +0000)
committerCollin Winter <collinw@gmail.com>
Sat, 1 Sep 2007 20:29:04 +0000 (20:29 +0000)
Lib/test/test_with.py

index 4fc8fe9fca514f3b7881d62f473a1fb242f3d8bd..a7bc2068b4c855ee84b758b3695e6370095712ad 100644 (file)
@@ -187,7 +187,9 @@ class FailureTestCase(unittest.TestCase):
         self.assertRaises(RuntimeError, shouldThrow)
 
 class ContextmanagerAssertionMixin(object):
-    TEST_EXCEPTION = RuntimeError("test exception")
+
+    def setUp(self):
+        self.TEST_EXCEPTION = RuntimeError("test exception")
 
     def assertInWithManagerInvariants(self, mock_manager):
         self.assertTrue(mock_manager.enter_called)
@@ -353,7 +355,7 @@ class NestedNonexceptionalTestCase(unittest.TestCase,
         self.assertAfterWithManagerInvariantsNoError(mock_nested)
 
 
-class ExceptionalTestCase(unittest.TestCase, ContextmanagerAssertionMixin):
+class ExceptionalTestCase(ContextmanagerAssertionMixin, unittest.TestCase):
     def testSingleResource(self):
         cm = mock_contextmanager_generator()
         def shouldThrow():