Skip to content

Commit ac5c8df

Browse files
authored
Merge branch 'main' into ios-support
2 parents a3859c1 + dfbe41e commit ac5c8df

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

news/12964.trivial.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
A valid, but non-existent URL used in a test case was corrected to be a valid URL.

tests/functional/test_bad_url.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
def test_filenotfound_error_message(script: Any) -> None:
88
# Test the error message returned when using a bad 'file:' URL.
99
# make pip to fail and get an error message
10-
# by running "pip install -r file:nonexistent_file"
10+
# by running "pip install -r file:///nonexistent_file"
1111
proc = script.pip("install", "-r", "file:///unexistent_file", expect_error=True)
1212
assert proc.returncode == 1
1313
expect = (

0 commit comments

Comments
 (0)