From 8a4916ebcc524a67e24a036b094bb3bb3fe9f4f0 Mon Sep 17 00:00:00 2001 From: Matt Davis Date: Mon, 19 Sep 2022 12:26:42 -0400 Subject: [PATCH] Adjust test expctation. --- tests/integration/test_uninstall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_uninstall.py b/tests/integration/test_uninstall.py index bf03a3d8..7486594f 100644 --- a/tests/integration/test_uninstall.py +++ b/tests/integration/test_uninstall.py @@ -196,7 +196,7 @@ def test_uninstall_all_dev_with_shared_dependencies(pipenv_instance_pypi): c = p.pipenv("uninstall --all-dev") assert c.returncode == 0 - assert "six" in p.lockfile["develop"] + assert "six" in p.lockfile["default"] @pytest.mark.uninstall