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:
Stefan Eissing 2025-12-10 16:07:59 +01:00 committed by Viktor Szakats
parent edbbcbb127
commit a73040ac8a
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -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)