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
Branches
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):
# subprocess.run(
# "cp -r foss2021a-mpi fuss1999a",
# shell=True,
# stdin=subprocess.PIPE,
# stderr=subprocess.PIPE,
# stdout=subprocess.PIPE,
# )
# add zlib as a spec to global_generic
......@@ -93,7 +93,7 @@ def test_install_environment_zlib(create_mock_git_repository):
subprocess.run(
["gcc -dumpfullversion"],
shell=True,
stdin=subprocess.PIPE,
stderr=subprocess.PIPE,
stdout=subprocess.PIPE,
)
.stdout.decode("utf-8")
......
......@@ -45,7 +45,7 @@ def test_prepare_environment(tmp_path, create_mock_git_repository):
git_branch_output_raw = subprocess.run(
f"cd {str(folders.repo_path)} && git branch",
shell=True,
stdin=subprocess.PIPE,
stderr=subprocess.PIPE,
stdout=subprocess.PIPE,
)
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.
Please register or to comment