Skip to content

Commit c4f59e4

Browse files
committed
format
1 parent 626ba0c commit c4f59e4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lldb/test/API/tools/lldb-dap/moduleSymbols/TestDAP_moduleSymbols.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ def test_moduleSymbols(self):
1616
symbol_names = []
1717
i = 0
1818
while True:
19-
next_symbol = self.dap_server.request_moduleSymbols(moduleName="a.out", startIndex=i, count=1)
19+
next_symbol = self.dap_server.request_moduleSymbols(
20+
moduleName="a.out", startIndex=i, count=1
21+
)
2022
self.assertIn("symbols", next_symbol["body"])
2123
result_symbols = next_symbol["body"]["symbols"]
2224
self.assertLessEqual(len(result_symbols), 1)

0 commit comments

Comments
 (0)