File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
lldb/test/API/tools/lldb-dap/gotoTargets Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -61,12 +61,16 @@ def test_default(self):
61
61
self .assertIsNotNone (thread_id , "threadId should not be none" )
62
62
63
63
response = self .dap_server .request_goto (thread_id , target_id )
64
- self .assertEqual (response ["success" ], True , "goto request with targetId should be successful" )
64
+ self .assertEqual (
65
+ response ["success" ], True , "goto request with targetId should be successful"
66
+ )
65
67
66
68
stopped_events = self .dap_server .wait_for_stopped (timeout = 0.200 )
67
69
is_goto = lambda event : event ["body" ]["reason" ] == "goto"
68
70
has_goto_event = any (map (is_goto , stopped_events ))
69
- self .assertEqual (has_goto_event , True , "expected a stopped event with reason `goto`" )
71
+ self .assertEqual (
72
+ has_goto_event , True , "expected a stopped event with reason `goto`"
73
+ )
70
74
71
75
self .dap_server .request_next (thread_id )
72
76
self .continue_to_next_stop ()
You can’t perform that action at this time.
0 commit comments