]> granicus.if.org Git - python/commitdiff
Reapplied change to test_warnings.py to test_warnings/__init__.py.
authorSteve Dower <steve.dower@microsoft.com>
Mon, 7 Sep 2015 05:30:40 +0000 (22:30 -0700)
committerSteve Dower <steve.dower@microsoft.com>
Mon, 7 Sep 2015 05:30:40 +0000 (22:30 -0700)
Lib/test/test_warnings/__init__.py

index 991a249f4a451ea292c388ac2a353ecb045b9002..cea9c574abfabf5f1f89ab704449521e4afae071 100644 (file)
@@ -44,6 +44,7 @@ class BaseTest:
     """Basic bookkeeping required for testing."""
 
     def setUp(self):
+        self.old_unittest_module = unittest.case.warnings
         # The __warningregistry__ needs to be in a pristine state for tests
         # to work properly.
         if '__warningregistry__' in globals():
@@ -55,10 +56,15 @@ class BaseTest:
         # The 'warnings' module must be explicitly set so that the proper
         # interaction between _warnings and 'warnings' can be controlled.
         sys.modules['warnings'] = self.module
+        # Ensure that unittest.TestCase.assertWarns() uses the same warnings
+        # module than warnings.catch_warnings(). Otherwise,
+        # warnings.catch_warnings() will be unable to remove the added filter.
+        unittest.case.warnings = self.module
         super(BaseTest, self).setUp()
 
     def tearDown(self):
         sys.modules['warnings'] = original_warnings
+        unittest.case.warnings = self.old_unittest_module
         super(BaseTest, self).tearDown()
 
 class PublicAPITests(BaseTest):