From 024c73dfa10d3100cac43aea35a28a476cc352db Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 25 Apr 2026 14:08:12 +0200 Subject: [PATCH] test_22_httpsrr: avoid class name clash with `test_21_resolve` Spotted by GitHub Code Quality Closes #21448 --- tests/http/test_22_httpsrr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]: