Commit cd98068e authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #18706: Fix a test for issue #18681 so it no longer breaks test_codeccallbacks*.

parents a70af542 679ca6bc
......@@ -317,8 +317,9 @@ class ReloadTests(unittest.TestCase):
def test_with_deleted_parent(self):
# see #18681
from html import parser
del sys.modules['html']
def cleanup(): del sys.modules['html.parser']
html = sys.modules.pop('html')
def cleanup():
sys.modules['html'] = html
self.addCleanup(cleanup)
with self.assertRaisesRegex(ImportError, 'html'):
imp.reload(parser)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment