From 306731cbe0cd774a8cdb2c114901373737f8d371 Mon Sep 17 00:00:00 2001 From: Frost Ming Date: Mon, 26 Jul 2021 16:48:55 +0800 Subject: [PATCH] Update test cases according to the latest pip --- tests/integration/test_lock.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/integration/test_lock.py b/tests/integration/test_lock.py index b6140d6e..e3be189d 100644 --- a/tests/integration/test_lock.py +++ b/tests/integration/test_lock.py @@ -501,7 +501,7 @@ requests = {git = "https://github.com/psf/requests.git", ref = "master", editabl assert c.return_code == 0 assert 'requests' in p.lockfile['default'] assert 'idna' in p.lockfile['default'] - assert 'chardet' in p.lockfile['default'] + assert 'certifi' in p.lockfile['default'] c = p.pipenv('install') assert c.return_code == 0 @@ -557,7 +557,7 @@ requests = {git = "https://github.com/psf/requests.git", editable = true, extras assert c.return_code == 0 assert 'requests' in p.lockfile['default'] assert 'idna' in p.lockfile['default'] - assert 'chardet' in p.lockfile['default'] + assert 'certifi' in p.lockfile['default'] assert "socks" in p.lockfile["default"]["requests"]["extras"] c = p.pipenv('install') assert c.return_code == 0 @@ -580,7 +580,7 @@ requests = {git = "https://github.com/psf/requests.git", ref = "master", editabl assert c.return_code == 0 assert 'requests' in p.lockfile['default'] assert 'idna' in p.lockfile['default'] - assert 'chardet' in p.lockfile['default'] + assert 'certifi' in p.lockfile['default'] c = p.pipenv('install') assert c.return_code == 0