diff options
author | Eli Bendersky <eliben@gmail.com> | 2011-08-03 02:18:33 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2011-08-03 02:18:33 (GMT) |
commit | 2b6ee286309bde403c9493e2c75d35c4f5b5abcb (patch) | |
tree | e5d62aee0bf4c1a9aa304dc4360159455313562d /Lib/test/test_support.py | |
parent | 4e36d5ae883ef2718a8599ad1313679f4e7483c1 (diff) | |
download | cpython-2b6ee286309bde403c9493e2c75d35c4f5b5abcb.zip cpython-2b6ee286309bde403c9493e2c75d35c4f5b5abcb.tar.gz cpython-2b6ee286309bde403c9493e2c75d35c4f5b5abcb.tar.bz2 |
Issue #11049: fix test_forget on installed Python - add os.curdir to sys.path
Diffstat (limited to 'Lib/test/test_support.py')
-rw-r--r-- | Lib/test/test_support.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index 589f482..394e210 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -58,6 +58,7 @@ class TestSupport(unittest.TestCase): mod_filename = TESTFN + '.py' with open(mod_filename, 'w') as f: print('foo = 1', file=f) + sys.path.insert(0, os.curdir) try: mod = __import__(TESTFN) self.assertIn(TESTFN, sys.modules) @@ -65,6 +66,7 @@ class TestSupport(unittest.TestCase): support.forget(TESTFN) self.assertNotIn(TESTFN, sys.modules) finally: + del sys.path[0] support.unlink(mod_filename) def test_HOST(self): |