Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update replaced _get_pip_whl_path_ctx references
Some code comments and test function names were still referring to the
removed function name. Not anymore!
  • Loading branch information
webknjaz committed Jan 25, 2024
commit 72b8ebe0fe1215bdaffa7ac4e66cfb2fdd490092
4 changes: 2 additions & 2 deletions Lib/test/test_ensurepip.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ def test_selected_wheel_path_no_dir(self):
with ensurepip._get_pip_whl_path_ctx() as bundled_wheel_path:
self.assertEqual(pip_filename, bundled_wheel_path.name)

def test_get_pip_info_with_dir(self):
# Test _get_pip_info() with a wheel package directory
def test_selected_wheel_path_with_dir(self):
# Test _get_pip_whl_path_ctx() with a wheel package directory
pip_filename = "pip-20.2.2-py2.py3-none-any.whl"

with tempfile.TemporaryDirectory() as tmpdir:
Expand Down