misc: fix spelling

Closes #17479
This commit is contained in:
John Bampton 2025-05-29 07:31:57 +10:00 committed by Daniel Stenberg
parent 4c6b74e1e8
commit 217fd5b424
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
9 changed files with 11 additions and 11 deletions

View file

@ -229,7 +229,7 @@ class TestProxy:
indata = open(srcfile).readlines()
for i in range(count):
respdata = open(curl.response_file(i)).readlines()
assert respdata == indata, f'resonse {i} differs'
assert respdata == indata, f'response {i} differs'
assert r.total_connects == 1, r.dump_logs()
@pytest.mark.skipif(condition=not Env.have_ssl_curl(), reason="curl without SSL")