Skip to content
Snippets Groups Projects
Unverified Commit 14b89b24 authored by Henri Menke's avatar Henri Menke
Browse files

Fix typo: stdin -> stderr

parent 79e4743f
No related branches found
No related tags found
1 merge request!134Add compatibility for Python 3.6: follow-up
...@@ -67,7 +67,7 @@ def test_install_environment_zlib(create_mock_git_repository): ...@@ -67,7 +67,7 @@ def test_install_environment_zlib(create_mock_git_repository):
# subprocess.run( # subprocess.run(
# "cp -r foss2021a-mpi fuss1999a", # "cp -r foss2021a-mpi fuss1999a",
# shell=True, # shell=True,
# stdin=subprocess.PIPE, # stderr=subprocess.PIPE,
# stdout=subprocess.PIPE, # stdout=subprocess.PIPE,
# ) # )
# add zlib as a spec to global_generic # add zlib as a spec to global_generic
...@@ -93,7 +93,7 @@ def test_install_environment_zlib(create_mock_git_repository): ...@@ -93,7 +93,7 @@ def test_install_environment_zlib(create_mock_git_repository):
subprocess.run( subprocess.run(
["gcc -dumpfullversion"], ["gcc -dumpfullversion"],
shell=True, shell=True,
stdin=subprocess.PIPE, stderr=subprocess.PIPE,
stdout=subprocess.PIPE, stdout=subprocess.PIPE,
) )
.stdout.decode("utf-8") .stdout.decode("utf-8")
......
...@@ -45,7 +45,7 @@ def test_prepare_environment(tmp_path, create_mock_git_repository): ...@@ -45,7 +45,7 @@ def test_prepare_environment(tmp_path, create_mock_git_repository):
git_branch_output_raw = subprocess.run( git_branch_output_raw = subprocess.run(
f"cd {str(folders.repo_path)} && git branch", f"cd {str(folders.repo_path)} && git branch",
shell=True, shell=True,
stdin=subprocess.PIPE, stderr=subprocess.PIPE,
stdout=subprocess.PIPE, stdout=subprocess.PIPE,
) )
git_branch_stdout = git_branch_output_raw.stdout.decode("utf-8") git_branch_stdout = git_branch_output_raw.stdout.decode("utf-8")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment