diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2018-07-23 06:49:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-23 06:49:08 (GMT) |
commit | 7a3056fa7dd1223fe7112e53b236c43d71f33f64 (patch) | |
tree | 49655b874eca985714b2fda7e0a770636f74c81b /Lib/lib2to3/tests | |
parent | d04f46c59f1d07d9bcc0ba910741296ac88d370d (diff) | |
download | cpython-7a3056fa7dd1223fe7112e53b236c43d71f33f64.zip cpython-7a3056fa7dd1223fe7112e53b236c43d71f33f64.tar.gz cpython-7a3056fa7dd1223fe7112e53b236c43d71f33f64.tar.bz2 |
bpo-21446: Update reload fixer to use importlib (GH-8391)
Diffstat (limited to 'Lib/lib2to3/tests')
-rw-r--r-- | Lib/lib2to3/tests/test_fixers.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/lib2to3/tests/test_fixers.py b/Lib/lib2to3/tests/test_fixers.py index bfe7a23..8cecf3c 100644 --- a/Lib/lib2to3/tests/test_fixers.py +++ b/Lib/lib2to3/tests/test_fixers.py @@ -290,30 +290,30 @@ class Test_reload(FixerTestCase): def test(self): b = """reload(a)""" - a = """import imp\nimp.reload(a)""" + a = """import importlib\nimportlib.reload(a)""" self.check(b, a) def test_comment(self): b = """reload( a ) # comment""" - a = """import imp\nimp.reload( a ) # comment""" + a = """import importlib\nimportlib.reload( a ) # comment""" self.check(b, a) # PEP 8 comments b = """reload( a ) # comment""" - a = """import imp\nimp.reload( a ) # comment""" + a = """import importlib\nimportlib.reload( a ) # comment""" self.check(b, a) def test_space(self): b = """reload( a )""" - a = """import imp\nimp.reload( a )""" + a = """import importlib\nimportlib.reload( a )""" self.check(b, a) b = """reload( a)""" - a = """import imp\nimp.reload( a)""" + a = """import importlib\nimportlib.reload( a)""" self.check(b, a) b = """reload(a )""" - a = """import imp\nimp.reload(a )""" + a = """import importlib\nimportlib.reload(a )""" self.check(b, a) def test_unchanged(self): |