diff --git a/tests/integration/test_install_basic.py b/tests/integration/test_install_basic.py index d4ca32f4..ec249bc6 100644 --- a/tests/integration/test_install_basic.py +++ b/tests/integration/test_install_basic.py @@ -444,6 +444,6 @@ def test_install_non_exist_dep(PipenvInstance, pypi): @pytest.mark.install def test_install_package_with_dots(PipenvInstance, pypi): with PipenvInstance(pypi=pypi, chdir=True) as p: - c = p.pipenv("install fsc.export") + c = p.pipenv("install backports.html") assert c.ok - assert "fsc.export" in p.pipfile["packages"] + assert "backports.html" in p.pipfile["packages"] diff --git a/tests/pypi/backports-html/backports.html-1.1.0.tar.gz b/tests/pypi/backports-html/backports.html-1.1.0.tar.gz new file mode 100644 index 00000000..de553eba Binary files /dev/null and b/tests/pypi/backports-html/backports.html-1.1.0.tar.gz differ diff --git a/tests/pypi/fsc-export/fsc.export-1.1.0.tar.gz b/tests/pypi/fsc-export/fsc.export-1.1.0.tar.gz deleted file mode 100644 index 4b4853f5..00000000 Binary files a/tests/pypi/fsc-export/fsc.export-1.1.0.tar.gz and /dev/null differ