summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorStéphane Bidoul <stephane.bidoul@gmail.com>2023-03-18 14:50:18 +0100
committerPradyun Gedam <pradyunsg@gmail.com>2023-03-27 11:55:20 +0100
commit7b11b5328bd69f510646f8947424d94f6d10aa4d (patch)
tree44571dcf015be76e91a922a4c2a7ad12dd3612d6 /tests
parent04e1ab071d303157b0fd6fa68508a8ef95c931c9 (diff)
downloadpip-7b11b5328bd69f510646f8947424d94f6d10aa4d.tar.gz
Update test_inspect_basic
wheel is now installed in our test venv by default.
Diffstat (limited to 'tests')
-rw-r--r--tests/functional/test_inspect.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/functional/test_inspect.py b/tests/functional/test_inspect.py
index 18abf1a46..c9f431346 100644
--- a/tests/functional/test_inspect.py
+++ b/tests/functional/test_inspect.py
@@ -31,11 +31,12 @@ def test_inspect_basic(simple_script: PipTestEnvironment) -> None:
result = simple_script.pip("inspect")
report = json.loads(result.stdout)
installed = report["installed"]
- assert len(installed) == 4
+ assert len(installed) == 5
installed_by_name = {i["metadata"]["name"]: i for i in installed}
assert installed_by_name.keys() == {
"pip",
"setuptools",
+ "wheel",
"coverage",
"simplewheel",
}