[tests] completely ignore '#auth' for 'only_matching' tests

This commit is contained in:
Mike Fährmann
2024-07-10 16:03:05 +02:00
parent 16e276fca4
commit 21831eba1e

View File

@@ -86,9 +86,9 @@ class TestExtractorResults(unittest.TestCase):
def _run_test(self, result):
result.pop("#comment", None)
auth = result.pop("#auth", None)
only_matching = (len(result) <= 3)
auth = result.get("#auth")
if auth is None:
auth = (result["#category"][1] in AUTH)
elif not auth: