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")