diff options
author | Rainer Jung <rjung@apache.org> | 2024-04-04 23:48:51 +0200 |
---|---|---|
committer | Rainer Jung <rjung@apache.org> | 2024-04-04 23:48:51 +0200 |
commit | b5427c7395eaf6aac832bec3bfdfba7d3802f4b4 (patch) | |
tree | d198f129cf2ad59d09b62741c1a6a7971f0dc02f /test | |
parent | bail after too many failed reads (diff) | |
download | apache2-b5427c7395eaf6aac832bec3bfdfba7d3802f4b4.tar.xz apache2-b5427c7395eaf6aac832bec3bfdfba7d3802f4b4.zip |
Fix pytest failure when using older nghttp2
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1916804 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r-- | test/modules/http2/test_009_timing.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/modules/http2/test_009_timing.py b/test/modules/http2/test_009_timing.py index 2c62bb0738..2784f9ad35 100644 --- a/test/modules/http2/test_009_timing.py +++ b/test/modules/http2/test_009_timing.py @@ -7,6 +7,7 @@ from .env import H2Conf, H2TestEnv @pytest.mark.skipif(condition=H2TestEnv.is_unsupported, reason="mod_http2 not supported here") +@pytest.mark.skipif(not H2TestEnv().h2load_is_at_least('1.41.0'), reason="h2load misses --connect-to option") class TestTiming: LOGFILE = "" |