]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
test_22_httpsrr: avoid class name clash with `test_21_resolve`
authorViktor Szakats <commit@vsz.me>
Sat, 25 Apr 2026 12:08:12 +0000 (14:08 +0200)
committerViktor Szakats <commit@vsz.me>
Sat, 25 Apr 2026 12:20:42 +0000 (14:20 +0200)
Spotted by GitHub Code Quality

Closes #21448

tests/http/test_22_httpsrr.py

index 6aaa822a9dbde9f468d7d5ca02cf6d84464de3d8..61f5e2e2f73f6014a1dbb0e512971a9c5ad21fb5 100644 (file)
@@ -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]: