Fix typo in `python-pip-requests-ssl` test

In 44b79e2186, we removed `--root-user-action` from our `pip install` invocation, but missed the `ignore` value, so we've been installing https://pypi.org/project/ignore/ in this test ever since. 😂
This commit is contained in:
Tianon Gravi 2024-02-23 11:20:02 -08:00
parent 59aa8bfc41
commit ada5d3b226
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
import subprocess, sys
subprocess.check_call([sys.executable, '-m', 'pip', 'install', 'ignore', 'requests'])
subprocess.check_call([sys.executable, '-m', 'pip', 'install', 'requests'])
import requests
r = requests.get('https://google.com')