mirror of
https://github.com/curl/curl.git
synced 2026-08-25 13:03:37 +03:00
tests: fix typo in assert message in http test
Found by pyrefly.
This commit is contained in:
parent
817d75e25b
commit
725fbeaad9
1 changed files with 1 additions and 1 deletions
|
|
@ -132,7 +132,7 @@ class TestBasic:
|
|||
r = curl.http_get(url=url, extra_args=['--http2-prior-knowledge'])
|
||||
r.check_exit_code(0)
|
||||
assert len(r.responses) == 1, f'{r.responses}'
|
||||
assert r.response['status'] == 200, f'{r.responsw}'
|
||||
assert r.response['status'] == 200, f'{r.response}'
|
||||
assert r.response['protocol'] == 'HTTP/2', f'{r.response}'
|
||||
assert r.json['server'] == env.domain1
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue