git: 289fadef7163 - stable/14 - atf_python: Fix a typo in a type annotation
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 16 Feb 2026 19:47:31 UTC
The branch stable/14 has been updated by markj:
URL: https://cgit.FreeBSD.org/src/commit/?id=289fadef716377b06f02988beaaa2d78aecb7bc6
commit 289fadef716377b06f02988beaaa2d78aecb7bc6
Author: Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2026-01-27 14:57:31 +0000
Commit: Mark Johnston <markj@FreeBSD.org>
CommitDate: 2026-02-16 16:09:28 +0000
atf_python: Fix a typo in a type annotation
No functional change intended.
MFC after: 1 week
Sponsored by: Stormshield
Sponsored by: Klara, Inc.
(cherry picked from commit ef389b7f581b2500c0e18c0989a54465712cd175)
---
tests/atf_python/atf_pytest.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/atf_python/atf_pytest.py b/tests/atf_python/atf_pytest.py
index 19b5f88fa200..aa44fbf7826f 100644
--- a/tests/atf_python/atf_pytest.py
+++ b/tests/atf_python/atf_pytest.py
@@ -117,7 +117,7 @@ class ATFHandler(object):
reason: str
def __init__(self, report_file_name: Optional[str]):
- self._tests_state_map: Dict[str, ReportStatus] = {}
+ self._tests_state_map: Dict[str, self.ReportState] = {}
self._report_file_name = report_file_name
self._report_file_handle = None