test_22_httpsrr: avoid class name clash with test_21_resolve

Spotted by GitHub Code Quality

Closes #21448
This commit is contained in:
Viktor Szakats 2026-04-25 14:08:12 +02:00
parent 701cd4cfc3
commit 024c73dfa1
No known key found for this signature in database

View 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]: