]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #11049: fix test_forget on installed Python - add os.curdir to sys.path
authorEli Bendersky <eliben@gmail.com>
Wed, 3 Aug 2011 02:18:33 +0000 (05:18 +0300)
committerEli Bendersky <eliben@gmail.com>
Wed, 3 Aug 2011 02:18:33 +0000 (05:18 +0300)
Lib/test/test_support.py

index 589f4828e49dbe10b747138f2a85c5be496dec64..394e210337c701018a72507663a5fbd91e00cb02 100644 (file)
@@ -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):