Skip to content

Commit 63b8db1

Browse files
erlend-aaslandmcepl
authored andcommitted
Fix tests
1 parent cd2acd4 commit 63b8db1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Lib/test/test_ensurepip.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,8 @@ def test_bootstrapping_with_prefix(self):
104104
ensurepip.bootstrap(prefix="/foo/bar/")
105105
self.run_pip.assert_called_once_with(
106106
[
107-
"install", "--no-index", "--find-links",
108-
unittest.mock.ANY, "--prefix", "/foo/bar/",
109-
"setuptools", "pip",
107+
"install", "--no-cache-dir", "--no-index", "--find-links",
108+
unittest.mock.ANY, "--prefix", "/foo/bar/", "pip",
110109
],
111110
unittest.mock.ANY,
112111
)

0 commit comments

Comments
 (0)