mypy stuff

This commit is contained in:
shamoon
2026-02-17 19:39:54 -08:00
parent 14a250e388
commit 9a51ab4578
6 changed files with 27 additions and 7 deletions

View File

@@ -640,7 +640,9 @@ class TestWorkflows(
expected_str = f"Document did not match {w}"
self.assertIn(expected_str, cm.output[0])
expected_str = f"Document path {test_file} does not match"
expected_str = (
f"Document path {Path(test_file).resolve(strict=False)} does not match"
)
self.assertIn(expected_str, cm.output[1])
def test_workflow_no_match_mail_rule(self) -> None: