mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
update a deprecated assert in logging tests (GH-17079)
This commit is contained in:
parent
9def81aa52
commit
991b02dc87
1 changed files with 1 additions and 1 deletions
|
@ -1613,7 +1613,7 @@ class ConfigFileTest(BaseTest):
|
|||
format=%(levelname)s ++ %(message)s
|
||||
"""
|
||||
self.apply_config(test_config)
|
||||
self.assertEquals(logging.getLogger().handlers[0].name, 'hand1')
|
||||
self.assertEqual(logging.getLogger().handlers[0].name, 'hand1')
|
||||
|
||||
def test_defaults_do_no_interpolation(self):
|
||||
"""bpo-33802 defaults should not get interpolated"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue