diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-07-21 19:41:39 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-07-21 19:41:39 (GMT) |
commit | 8ff3a5a9cdcad4a9b37af1326f008af26a123d32 (patch) | |
tree | 6f120325363bb4cbb79b0b738d6098bea0aca021 /Lib | |
parent | 8d603f179682baee02684af6eff2f0d8cff6ad9c (diff) | |
parent | 296b347db7c68b1a2aadda34ddf83c93eed0ad83 (diff) | |
download | cpython-8ff3a5a9cdcad4a9b37af1326f008af26a123d32.zip cpython-8ff3a5a9cdcad4a9b37af1326f008af26a123d32.tar.gz cpython-8ff3a5a9cdcad4a9b37af1326f008af26a123d32.tar.bz2 |
Issue #24678: Fixed raiseExceptions typo in logging tests.
Patch by Jacek KoĆodziej.
Diffstat (limited to 'Lib')
-rw-r--r-- | 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 index 07aeb83..b6e64ce 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -3779,18 +3779,12 @@ class LoggerTest(BaseTest): (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 = [] |