[Python-checkins] cpython (merge 3.5 -> default): Issue #24678: Fixed raiseExceptions typo in logging tests.

serhiy.storchaka python-checkins at python.org
Tue Jul 21 21:41:59 CEST 2015


https://hg.python.org/cpython/rev/83b45ea19d00
changeset:   96981:83b45ea19d00
parent:      96978:6629773fef63
parent:      96980:7a54e400155f
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Tue Jul 21 22:41:39 2015 +0300
summary:
  Issue #24678: Fixed raiseExceptions typo in logging tests.
Patch by Jacek Kołodziej.

files:
  Lib/test/test_logging.py |  14 ++++----------
  1 files changed, 4 insertions(+), 10 deletions(-)


diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py
--- a/Lib/test/test_logging.py
+++ b/Lib/test/test_logging.py
@@ -3779,18 +3779,12 @@
                          (exc.__class__, exc, exc.__traceback__))
 
     def test_log_invalid_level_with_raise(self):
-        old_raise = logging.raiseExceptions
-        self.addCleanup(setattr, logging, 'raiseExecptions', old_raise)
-
-        logging.raiseExceptions = True
-        self.assertRaises(TypeError, self.logger.log, '10', 'test message')
+        with support.swap_attr(logging, 'raiseExceptions', True):
+            self.assertRaises(TypeError, self.logger.log, '10', 'test message')
 
     def test_log_invalid_level_no_raise(self):
-        old_raise = logging.raiseExceptions
-        self.addCleanup(setattr, logging, 'raiseExecptions', old_raise)
-
-        logging.raiseExceptions = False
-        self.logger.log('10', 'test message')  # no exception happens
+        with support.swap_attr(logging, 'raiseExceptions', False):
+            self.logger.log('10', 'test message')  # no exception happens
 
     def test_find_caller_with_stack_info(self):
         called = []

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list