File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -210,9 +210,9 @@ def test_cache_info(
210
210
result = script .pip ("cache" , "info" )
211
211
212
212
assert f"Package index page cache location: { http_cache_dir } " in result .stdout
213
- assert f"Wheels location: { wheel_cache_dir } " in result .stdout
213
+ assert f"Built wheels location: { wheel_cache_dir } " in result .stdout
214
214
num_wheels = len (wheel_cache_files )
215
- assert f"Number of wheels: { num_wheels } " in result .stdout
215
+ assert f"Number of built wheels: { num_wheels } " in result .stdout
216
216
217
217
218
218
@pytest .mark .usefixtures ("populate_wheel_cache" )
@@ -242,9 +242,9 @@ def test_cache_list_abspath(script: PipTestEnvironment) -> None:
242
242
@pytest .mark .usefixtures ("empty_wheel_cache" )
243
243
def test_cache_list_with_empty_cache (script : PipTestEnvironment ) -> None :
244
244
"""Running `pip cache list` with an empty cache should print
245
- "Nothing cached." and exit."""
245
+ "No locally built wheels cached." and exit."""
246
246
result = script .pip ("cache" , "list" )
247
- assert result .stdout == "Nothing cached.\n "
247
+ assert result .stdout == "No locally built wheels cached.\n "
248
248
249
249
250
250
@pytest .mark .usefixtures ("empty_wheel_cache" )
You can’t perform that action at this time.
0 commit comments