From 7ecea16e2513fb2fca5027bd58abf55e5eebfa5b Mon Sep 17 00:00:00 2001 From: Oz N Tiram Date: Wed, 14 Sep 2022 01:01:11 +0200 Subject: [PATCH] Fix test_lock_updated_source The source must contain a name or Plette will fail. --- tests/integration/test_lock.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/test_lock.py b/tests/integration/test_lock.py index ac688b78..6f33c26b 100644 --- a/tests/integration/test_lock.py +++ b/tests/integration/test_lock.py @@ -404,6 +404,7 @@ def test_lock_updated_source(pipenv_instance_private_pypi): contents = """ [[source]] url = "{url}/${{MY_ENV_VAR}}" +name = source_with_env_expanded [packages] requests = "==2.14.0"