Skip to content

Commit 601418e

Browse files
da-viperadrian-prantl
authored andcommitted
[lldb-dap][test] Fix: Typo in unresolved test (llvm#107030)
There is a typo in an assertion that causes the instruction break-point test to be unresolved (cherry picked from commit 7d7d2d2)
1 parent 52fdf22 commit 601418e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/test/API/tools/lldb-dap/instruction-breakpoint/TestDAP_instruction_breakpoint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def instruction_breakpoint_test(self):
3535
# Set source breakpoint 1
3636
response = self.dap_server.request_setBreakpoints(self.main_path, [main_line])
3737
breakpoints = response["body"]["breakpoints"]
38-
self.assertEquals(len(breakpoints), 1)
38+
self.assertEqual(len(breakpoints), 1)
3939
breakpoint = breakpoints[0]
4040
self.assertEqual(
4141
breakpoint["line"], main_line, "incorrect breakpoint source line"

0 commit comments

Comments
 (0)