Skip to content

Commit 0436076

Browse files
committed
fixup! Fix sibling test
1 parent e44213e commit 0436076

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_repl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ def test_asyncio_repl_reaches_python_startup_script(self):
303303
env = os.environ.copy()
304304
env["PYTHON_HISTORY"] = os.path.join(tmpdir, ".asyncio_history")
305305
env["PYTHONSTARTUP"] = script
306-
p = spawn_asyncio_repl(env=env)
306+
p = spawn_asyncio_repl(isolated=False, env=env)
307307
output = kill_python(p)
308308
self.assertEqual(p.returncode, 0)
309309
self.assertIn("pythonstartup done!", output)

0 commit comments

Comments
 (0)