Skip to content

Commit 9f93e6d

Browse files
copy environ
1 parent 3da71ff commit 9f93e6d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Lib/test/test_asyncio/test_subprocess.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,8 @@ async def check_stdout_output(self, coro, output):
698698
def test_create_subprocess_env_shell(self) -> None:
699699
async def main() -> None:
700700
cmd = f'''{sys.executable} -c "import os, sys; sys.stdout.write(os.getenv('FOO'))"'''
701-
env = {"FOO": 'bar'}
701+
env = os.environ.copy()
702+
env["FOO"] = "bar"
702703
proc = await asyncio.create_subprocess_shell(
703704
cmd, env=env, stdout=subprocess.PIPE
704705
)
@@ -710,7 +711,8 @@ def test_create_subprocess_env_exec(self) -> None:
710711
async def main() -> None:
711712
cmd = [sys.executable, "-c",
712713
"import os, sys; sys.stdout.write(os.getenv('FOO'))"]
713-
env = {"FOO": 'baz'}
714+
env = os.environ.copy()
715+
env["FOO"] = "baz"
714716
proc = await asyncio.create_subprocess_exec(
715717
*cmd, env=env, stdout=subprocess.PIPE
716718
)

0 commit comments

Comments
 (0)