From 2058565edf4ee388fb7fe8357a871b4bc87752d3 Mon Sep 17 00:00:00 2001 From: Matt Davis Date: Sat, 17 Jun 2023 12:16:34 -0400 Subject: [PATCH] Fix failing test --- tests/integration/test_install_uri.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/integration/test_install_uri.py b/tests/integration/test_install_uri.py index 224fcef7..ef448a15 100644 --- a/tests/integration/test_install_uri.py +++ b/tests/integration/test_install_uri.py @@ -132,8 +132,8 @@ six = "*" @pytest.mark.index @pytest.mark.install @pytest.mark.needs_internet -def test_install_specifying_index_url(pipenv_instance_private_pypi): - with pipenv_instance_private_pypi() as p: +def test_install_specifying_index_url(pipenv_instance_pypi): + with pipenv_instance_pypi() as p: with open(p.pipfile_path, "w") as f: contents = """ [[source]] @@ -146,8 +146,6 @@ six = "*" [dev-packages] -[pipenv] -install_search_all_sources = true """.strip() f.write(contents) c = p.pipenv("install pipenv-test-private-package --index https://test.pypi.org/simple")