Commit b0fc9c4d authored by Benjamin Peterson's avatar Benjamin Peterson

merge heads

parents 539b6c41 2b6ee286
......@@ -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):
......
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