Skip to content

Commit 7b11b53

Browse files
sbidoulpradyunsg
authored andcommitted
Update test_inspect_basic
wheel is now installed in our test venv by default.
1 parent 04e1ab0 commit 7b11b53

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/functional/test_inspect.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,12 @@ def test_inspect_basic(simple_script: PipTestEnvironment) -> None:
3131
result = simple_script.pip("inspect")
3232
report = json.loads(result.stdout)
3333
installed = report["installed"]
34-
assert len(installed) == 4
34+
assert len(installed) == 5
3535
installed_by_name = {i["metadata"]["name"]: i for i in installed}
3636
assert installed_by_name.keys() == {
3737
"pip",
3838
"setuptools",
39+
"wheel",
3940
"coverage",
4041
"simplewheel",
4142
}

0 commit comments

Comments
 (0)