diff options
Diffstat (limited to 'tests/tox_env/python/test_python_api.py')
| -rw-r--r-- | tests/tox_env/python/test_python_api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tox_env/python/test_python_api.py b/tests/tox_env/python/test_python_api.py index 390ad9b5..5ee6a19a 100644 --- a/tests/tox_env/python/test_python_api.py +++ b/tests/tox_env/python/test_python_api.py @@ -52,7 +52,7 @@ def test_requirements_txt(tox_project: ToxProjectCreator, monkeypatch: MonkeyPat tox_env = result.state.tox_env("py") assert execute_calls.call_count == 1 - exp = [str(tox_env.conf["env_python"]), "-I", "-m", "pip", "install", "-r"] + exp = ["python", "-I", "-m", "pip", "install", "-r"] got_cmd = execute_calls.call_args[0][3].cmd assert got_cmd[:-1] == exp |
