Skip to content

Commit d979304

Browse files
committed
fix default value
1 parent bee3890 commit d979304

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def set_source_breakpoints(
6565
for breakpoint in breakpoints:
6666
breakpoint_ids.append("%i" % (breakpoint["id"]))
6767
if wait_for_resolve:
68-
self.wait_for_breakpoints_to_resolve(breakpoint_ids, timeout=10)
68+
self.wait_for_breakpoints_to_resolve(breakpoint_ids)
6969
return breakpoint_ids
7070

7171
def set_function_breakpoints(
@@ -85,7 +85,7 @@ def set_function_breakpoints(
8585
for breakpoint in breakpoints:
8686
breakpoint_ids.append("%i" % (breakpoint["id"]))
8787
if wait_for_resolve:
88-
self.wait_for_breakpoints_to_resolve(breakpoint_ids, timeout=10)
88+
self.wait_for_breakpoints_to_resolve(breakpoint_ids)
8989
return breakpoint_ids
9090

9191
def wait_for_breakpoints_to_resolve(

0 commit comments

Comments
 (0)