@@ -221,7 +221,7 @@ def __init__(self) -> None:
221221
222222 self .exception_breakpoints : Set [ExceptionBreakpointsEntry ] = set ()
223223 self .exception_breakpoints .add (
224- ExceptionBreakpointsEntry ((), (ExceptionFilterOptions ("uncaughted_failed_keyword " ),), ())
224+ ExceptionBreakpointsEntry ((), (ExceptionFilterOptions ("uncaught_failed_keyword " ),), ())
225225 )
226226
227227 self .main_thread : Optional [threading .Thread ] = None
@@ -831,7 +831,7 @@ def end_keyword(self, name: str, attributes: Dict[str, Any]) -> None:
831831 if status == "FAIL" and type in ["KEYWORD" , "SETUP" , "TEARDOWN" ]:
832832 self .process_end_state (
833833 status ,
834- {"failed_keyword" , * ({"uncaughted_failed_keyword " } if self .in_caughted_keyword () else {})},
834+ {"failed_keyword" , * ({"uncaught_failed_keyword " } if self .in_caughted_keyword () else {})},
835835 "Keyword failed." ,
836836 f"Keyword failed: { self .last_fail_message } " if self .last_fail_message else "Keyword failed." ,
837837 )
@@ -1200,7 +1200,7 @@ def set_exception_breakpoints(
12001200
12011201 if filter_options is not None :
12021202 for option in filter_options :
1203- if option .filter_id in ["failed_keyword" , "uncaughted_failed_keyword " , "failed_test" , "failed_suite" ]:
1203+ if option .filter_id in ["failed_keyword" , "uncaught_failed_keyword " , "failed_test" , "failed_suite" ]:
12041204 entry = ExceptionBreakpointsEntry (
12051205 tuple (filters ),
12061206 tuple (filter_options ) if filter_options is not None else None ,
0 commit comments