Skip to content

Commit a258cae

Browse files
committed
update comment
1 parent 7930a18 commit a258cae

File tree

1 file changed

+2
-2
lines changed
  • cross-project-tests/debuginfo-tests/dexter/dex/debugger

1 file changed

+2
-2
lines changed

cross-project-tests/debuginfo-tests/dexter/dex/debugger/DAP.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ def _flush_breakpoints(self):
623623
raise DebuggerException(
624624
f"could not set function breakpoints: '{desired_bps}'"
625625
)
626-
# Is this right? Are we guarenteed the order of the outgoing/incoming lists?
626+
# We expect the breakpoint order to match in request and response.
627627
dex_bp_ids = list(self.function_bp_info.keys())
628628
self._update_breakpoint_ids_after_request(dex_bp_ids, result)
629629

@@ -639,7 +639,7 @@ def _flush_breakpoints(self):
639639
raise DebuggerException(
640640
f"could not set instruction breakpoints: '{desired_bps}'"
641641
)
642-
# Is this right? Are we guarenteed the order of the outgoing/incoming lists?
642+
# We expect the breakpoint order to match in request and response.
643643
dex_bp_ids = list(self.instruction_bp_info.keys())
644644
self._update_breakpoint_ids_after_request(dex_bp_ids, result)
645645

0 commit comments

Comments
 (0)