From: Viktor Szakats Date: Sat, 25 Apr 2026 12:08:12 +0000 (+0200) Subject: test_22_httpsrr: avoid class name clash with `test_21_resolve` X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=024c73dfa10d3100cac43aea35a28a476cc352db;p=thirdparty%2Fcurl.git test_22_httpsrr: avoid class name clash with `test_21_resolve` Spotted by GitHub Code Quality Closes #21448 --- diff --git a/tests/http/test_22_httpsrr.py b/tests/http/test_22_httpsrr.py index 6aaa822a9d..61f5e2e2f7 100644 --- a/tests/http/test_22_httpsrr.py +++ b/tests/http/test_22_httpsrr.py @@ -37,7 +37,7 @@ log = logging.getLogger(__name__) @pytest.mark.skipif(condition=not Env.curl_is_debug(), reason="needs curl debug") @pytest.mark.skipif(condition=not Env.curl_override_dns(), reason="no DNS override") @pytest.mark.skipif(condition=not Env.curl_has_feature('HTTPSRR'), reason="no HTTPSRR support") -class TestResolve: +class TestHTTPSRR: @pytest.fixture(scope='class') def dnsd(self, env: Env) -> Generator[Dnsd, None, None]: