]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
pytest: bump quiche version check update
authorStefan Eissing <stefan@eissing.org>
Fri, 9 Jan 2026 14:23:36 +0000 (15:23 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 9 Jan 2026 14:47:27 +0000 (15:47 +0100)
Since the Lazy Lucas did not manage to get the fix merged in 0.24.7,
increase the pytest version check number in the hope that it will happen
in the next release.

Closes #20229

tests/http/test_05_errors.py

index 89a8acdebef3028574cbc36ce218a647c9a776a2..29225983e9b16a69fd99b893115ee28cf0ba8551 100644 (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.7'):
+                not env.curl_lib_version_at_least('quiche', '0.24.8'):
             pytest.skip("quiche issue #2277 not fixed")
         count = 20
         curl = CurlClient(env=env)