From 8bbb4bdd51a4ba64f91d697d0972dfb7dbcf7acc Mon Sep 17 00:00:00 2001 From: Oz N Tiram Date: Wed, 14 Sep 2022 08:33:07 +0200 Subject: [PATCH] Fix test_lock_updated_source This was broken because of wrong Pipfile format. Plette is strict! --- tests/integration/test_lock.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/integration/test_lock.py b/tests/integration/test_lock.py index 33a1b1ba..c1a662c7 100644 --- a/tests/integration/test_lock.py +++ b/tests/integration/test_lock.py @@ -391,7 +391,7 @@ six = {version = "*", index = "testpypi"} pipenv-test-public-package = "*" """.strip() f.write(contents) - c = p.pipenv(f'install -v') + c = p.pipenv('install -v') assert c.returncode == 0 @@ -404,7 +404,7 @@ def test_lock_updated_source(pipenv_instance_private_pypi): contents = """ [[source]] url = "{url}/${{MY_ENV_VAR}}" -name = expanded +name = "expanded" verify_ssl = false [packages] @@ -422,6 +422,8 @@ requests = "==2.14.0" contents = """ [[source]] url = "{url}/simple" +name = "expanded" +verify_ssl = false [packages] requests = "==2.14.0"