summaryrefslogtreecommitdiff
path: root/tests/test_process.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_process.py')
-rw-r--r--tests/test_process.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_process.py b/tests/test_process.py
index 6c5dd76b..d5c322fc 100644
--- a/tests/test_process.py
+++ b/tests/test_process.py
@@ -1654,9 +1654,9 @@ def run_in_venv(cmd):
"""
words = cmd.split()
if env.WINDOWS:
- words[0] = r"{}\Scripts\{}.exe".format("venv", words[0])
+ words[0] = fr"venv\Scripts\{words[0]}.exe"
else:
- words[0] = "{}/bin/{}".format("venv", words[0])
+ words[0] = fr"venv/bin/{words[0]}"
status, output = run_command(" ".join(words))
assert status == 0
return output