chore: simplify test names

This commit is contained in:
Paul Pfeister
2025-09-14 01:39:37 -04:00
parent 34cb23bc6e
commit ad76b3685f
+2 -2
View File
@@ -59,7 +59,7 @@ def false_negative_check(sites_info: dict[str, dict[str, str]], site: str) -> Qu
class Test_All_Targets:
@pytest.mark.validate_targets_fp
def test_manifest_false_pos(self, chunked_sites: dict[str, dict[str, str]]):
def test_false_pos(self, chunked_sites: dict[str, dict[str, str]]):
"""Iterate through all sites in the manifest to discover possible false-positive inducting targets."""
pattern: str
for site in chunked_sites:
@@ -71,7 +71,7 @@ class Test_All_Targets:
assert result is QueryStatus.AVAILABLE, f"{site} produced false positive with pattern {pattern}, result was {result}"
@pytest.mark.validate_targets_fn
def test_manifest_false_neg(self, chunked_sites: dict[str, dict[str, str]]):
def test_false_neg(self, chunked_sites: dict[str, dict[str, str]]):
"""Iterate through all sites in the manifest to discover possible false-negative inducting targets."""
for site in chunked_sites:
result: QueryStatus = false_negative_check(chunked_sites, site)