git: ef389b7f581b - main - atf_python: Fix a typo in a type annotation

From: Mark Johnston <markj_at_FreeBSD.org>
Date: Tue, 27 Jan 2026 15:02:26 UTC
The branch main has been updated by markj:

URL: https://cgit.FreeBSD.org/src/commit/?id=ef389b7f581b2500c0e18c0989a54465712cd175

commit ef389b7f581b2500c0e18c0989a54465712cd175
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2026-01-27 14:57:31 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2026-01-27 14:57:31 +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.
---
 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 = None