@@ -221,7 +221,7 @@ def __init__(self) -> None:
221
221
222
222
self .exception_breakpoints : Set [ExceptionBreakpointsEntry ] = set ()
223
223
self .exception_breakpoints .add (
224
- ExceptionBreakpointsEntry ((), (ExceptionFilterOptions ("uncaughted_failed_keyword " ),), ())
224
+ ExceptionBreakpointsEntry ((), (ExceptionFilterOptions ("uncaught_failed_keyword " ),), ())
225
225
)
226
226
227
227
self .main_thread : Optional [threading .Thread ] = None
@@ -831,7 +831,7 @@ def end_keyword(self, name: str, attributes: Dict[str, Any]) -> None:
831
831
if status == "FAIL" and type in ["KEYWORD" , "SETUP" , "TEARDOWN" ]:
832
832
self .process_end_state (
833
833
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 {})},
835
835
"Keyword failed." ,
836
836
f"Keyword failed: { self .last_fail_message } " if self .last_fail_message else "Keyword failed." ,
837
837
)
@@ -1200,7 +1200,7 @@ def set_exception_breakpoints(
1200
1200
1201
1201
if filter_options is not None :
1202
1202
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" ]:
1204
1204
entry = ExceptionBreakpointsEntry (
1205
1205
tuple (filters ),
1206
1206
tuple (filter_options ) if filter_options is not None else None ,
0 commit comments