mirror of
https://github.com/curl/curl.git
synced 2026-04-14 21:51:41 +03:00
quiche: fix version for skip due to flakiness
0.24.6 is the quiche version without the fix for proper handling fo
RESET streams. Require a verion higher than that to run test_05_02.
Follow-up to 14478429e7 #19916
Closes #19921
This commit is contained in:
parent
edbbcbb127
commit
a73040ac8a
1 changed files with 1 additions and 1 deletions
|
|
@ -61,7 +61,7 @@ class TestErrors:
|
|||
if proto == 'h3' and env.curl_uses_ossl_quic():
|
||||
pytest.skip("openssl-quic is flaky in yielding proper error codes")
|
||||
if proto == 'h3' and env.curl_uses_lib('quiche') and \
|
||||
not env.curl_lib_version_at_least('quiche', '0.24.5'):
|
||||
not env.curl_lib_version_at_least('quiche', '0.24.7'):
|
||||
pytest.skip("quiche issue #2277 not fixed")
|
||||
count = 20
|
||||
curl = CurlClient(env=env)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue