Date: Mon, 09 Feb 2026 18:04:12 +0000 From: Mark Johnston <markj@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 9e921752f965 - stable/15 - atf_python: Fix a typo in a type annotation Message-ID: <698a219c.2771d.3b0bf7cc@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch stable/15 has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=9e921752f965d85bd0ad2b7b13fd0dc9c1094968 commit 9e921752f965d85bd0ad2b7b13fd0dc9c1094968 Author: Mark Johnston <markj@FreeBSD.org> AuthorDate: 2026-01-27 14:57:31 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2026-02-09 18:03:41 +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 02ed502ace67..c7b63a0c6c76 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 = Nonehome | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?698a219c.2771d.3b0bf7cc>
