@@ -44,7 +44,7 @@ def end_suite(self, name: str, attributes: Dict[str, Any]) -> None:
44
44
45
45
Debugger .instance ().end_suite (name , attributes )
46
46
47
- Debugger .instance ().end_output_group (name , attributes )
47
+ Debugger .instance ().end_output_group (name , attributes , "SUITE" )
48
48
49
49
Debugger .instance ().send_event (
50
50
self ,
@@ -82,7 +82,7 @@ def start_test(self, name: str, attributes: Dict[str, Any]) -> None:
82
82
def end_test (self , name : str , attributes : Dict [str , Any ]) -> None :
83
83
Debugger .instance ().end_test (name , attributes )
84
84
85
- Debugger .instance ().end_output_group (name , attributes )
85
+ Debugger .instance ().end_output_group (name , attributes , "TEST" )
86
86
87
87
Debugger .instance ().send_event (
88
88
self ,
@@ -114,7 +114,7 @@ def end_keyword(self, name: str, attributes: Dict[str, Any]) -> None:
114
114
Debugger .instance ().end_keyword (name , attributes )
115
115
116
116
if attributes ["type" ] in ["KEYWORD" , "SETUP" , "TEARDOWN" ]:
117
- Debugger .instance ().end_output_group (name , attributes )
117
+ Debugger .instance ().end_output_group (name , attributes , attributes . get ( "type" , None ) )
118
118
119
119
if attributes ["status" ] == "FAIL" and attributes .get ("source" , None ):
120
120
if self .failed_keywords is None :
0 commit comments