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

pull/5870/head
Mike Fährmann 2 months ago
parent 16e276fca4
commit 21831eba1e
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -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:

Loading…
Cancel
Save