From fee38eb1815e5c49a819a487e5af48ddf36a9de8 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 26 May 2026 18:39:11 +0200 Subject: [PATCH] or higher -> or greater 3 tests --- tests/http/test_01_basic.py | 8 ++++---- tests/secureserver.pl | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/http/test_01_basic.py b/tests/http/test_01_basic.py index f171a0a59e..25c7769f42 100644 --- a/tests/http/test_01_basic.py +++ b/tests/http/test_01_basic.py @@ -165,7 +165,7 @@ class TestBasic: # http: response headers larger than what curl buffers for @pytest.mark.skipif(condition=not Env.httpd_is_at_least('2.4.64'), - reason='httpd must be 2.4.64 or higher') + reason='httpd must be 2.4.64 or greater') @pytest.mark.parametrize("proto", Env.http_h1_h2_protos()) def test_01_12_xlarge_resp_headers(self, env: Env, httpd, configures_httpd, proto): httpd.set_extra_config('base', [ @@ -182,7 +182,7 @@ class TestBasic: # http: 1 response header larger than what curl buffers for @pytest.mark.skipif(condition=not Env.httpd_is_at_least('2.4.64'), - reason='httpd must be 2.4.64 or higher') + reason='httpd must be 2.4.64 or greater') @pytest.mark.parametrize("proto", Env.http_h1_h2_protos()) def test_01_13_megalarge_resp_headers(self, env: Env, httpd, configures_httpd, proto): httpd.set_extra_config('base', [ @@ -202,7 +202,7 @@ class TestBasic: # http: several response headers, together > 256 KB # nghttp2 error -905: Too many CONTINUATION frames following a HEADER frame @pytest.mark.skipif(condition=not Env.httpd_is_at_least('2.4.64'), - reason='httpd must be 2.4.64 or higher') + reason='httpd must be 2.4.64 or greater') @pytest.mark.parametrize("proto", Env.http_h1_h2_protos()) def test_01_14_gigalarge_resp_headers(self, env: Env, httpd, configures_httpd, proto): httpd.set_extra_config('base', [ @@ -221,7 +221,7 @@ class TestBasic: # http: one response header > 256 KB @pytest.mark.skipif(condition=not Env.httpd_is_at_least('2.4.64'), - reason='httpd must be 2.4.64 or higher') + reason='httpd must be 2.4.64 or greater') @pytest.mark.parametrize("proto", Env.http_h1_h2_protos()) def test_01_15_gigalarge_resp_headers(self, env: Env, httpd, configures_httpd, proto): httpd.set_extra_config('base', [ diff --git a/tests/secureserver.pl b/tests/secureserver.pl index 39936dee04..8c3f56e850 100755 --- a/tests/secureserver.pl +++ b/tests/secureserver.pl @@ -83,7 +83,7 @@ my $logdir = $path .'/log'; my $piddir; #*************************************************************************** -# Signal handler to remove our stunnel 4.00 or higher configuration file. +# Signal handler to remove our stunnel 4.00 or greater configuration file. # sub exit_signal_handler { my $signame = shift; @@ -280,7 +280,7 @@ if($stunnel_version < 400) { } #*************************************************************************** -# Build command to execute for stunnel 4.00 or higher +# Build command to execute for stunnel 4.00 or greater # if($stunnel_version >= 400) { $socketopt = "a:SO_REUSEADDR=1";