diff --git a/src/pip/_internal/commands/cache.py b/src/pip/_internal/commands/cache.py index f84b7022962..c5f03302d6b 100644 --- a/src/pip/_internal/commands/cache.py +++ b/src/pip/_internal/commands/cache.py @@ -105,9 +105,9 @@ def get_cache_info(self, options: Values, args: List[Any]) -> None: Package index page cache location: {http_cache_location} Package index page cache size: {http_cache_size} Number of HTTP files: {num_http_files} - Built wheels location: {wheels_cache_location} - Built wheels size: {wheels_cache_size} - Number of built wheels: {package_count} + Locally built wheels location: {wheels_cache_location} + Locally built wheels size: {wheels_cache_size} + Number of locally built wheels: {package_count} """ ) .format( diff --git a/tests/functional/test_cache.py b/tests/functional/test_cache.py index b23fb9f2376..7d20f5e3100 100644 --- a/tests/functional/test_cache.py +++ b/tests/functional/test_cache.py @@ -210,9 +210,9 @@ def test_cache_info( result = script.pip("cache", "info") assert f"Package index page cache location: {http_cache_dir}" in result.stdout - assert f"Built wheels location: {wheel_cache_dir}" in result.stdout + assert f"Locally built wheels location: {wheel_cache_dir}" in result.stdout num_wheels = len(wheel_cache_files) - assert f"Number of built wheels: {num_wheels}" in result.stdout + assert f"Number of locally built wheels: {num_wheels}" in result.stdout @pytest.mark.usefixtures("populate_wheel_cache")