From f0d29d415c670601e604f7f059331136d8b28982 Mon Sep 17 00:00:00 2001 From: Matt Davis Date: Wed, 31 Aug 2022 09:55:50 -0400 Subject: [PATCH] fix test --- tests/integration/test_install_twists.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_install_twists.py b/tests/integration/test_install_twists.py index 941d4491..60b22f22 100644 --- a/tests/integration/test_install_twists.py +++ b/tests/integration/test_install_twists.py @@ -242,7 +242,7 @@ def test_local_zipfiles(PipenvInstance, testsroot): destination = os.path.join(p.path, file_name) shutil.copy(source_path, destination) - c = p.pipenv(f"install {source_path}") + c = p.pipenv(f"install {file_name}") os.unlink(destination) assert c.returncode == 0 key = [k for k in p.pipfile["packages"].keys()][0]