Skip to content

Commit 50fb9b0

Browse files
committed
[lldb-dap] Fix code format
1 parent bacb624 commit 50fb9b0

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

lldb/test/API/tools/lldb-dap/gotoTargets/TestDAP_gotoTargets.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,16 @@ def test_default(self):
6161
self.assertIsNotNone(thread_id, "threadId should not be none")
6262

6363
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+
)
6567

6668
stopped_events = self.dap_server.wait_for_stopped(timeout=0.200)
6769
is_goto = lambda event: event["body"]["reason"] == "goto"
6870
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+
)
7074

7175
self.dap_server.request_next(thread_id)
7276
self.continue_to_next_stop()

0 commit comments

Comments
 (0)