Skip to content

Commit 9292797

Browse files
committed
fix default value
1 parent a87cf3e commit 9292797

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
@@ -68,7 +68,7 @@ def set_source_breakpoints(
6868
for breakpoint in breakpoints:
6969
breakpoint_ids.append("%i" % (breakpoint["id"]))
7070
if wait_for_resolve:
71-
self.wait_for_breakpoints_to_resolve(breakpoint_ids, timeout=10)
71+
self.wait_for_breakpoints_to_resolve(breakpoint_ids)
7272
return breakpoint_ids
7373

7474
def set_source_breakpoints_assembly(self, source_reference, lines, data=None):
@@ -102,7 +102,7 @@ def set_function_breakpoints(
102102
for breakpoint in breakpoints:
103103
breakpoint_ids.append("%i" % (breakpoint["id"]))
104104
if wait_for_resolve:
105-
self.wait_for_breakpoints_to_resolve(breakpoint_ids, timeout=10)
105+
self.wait_for_breakpoints_to_resolve(breakpoint_ids)
106106
return breakpoint_ids
107107

108108
def wait_for_breakpoints_to_resolve(

0 commit comments

Comments
 (0)