We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85fe6e3 commit 7930a18Copy full SHA for 7930a18
cross-project-tests/debuginfo-tests/dexter/dex/debugger/lldb/LLDB.py
@@ -531,7 +531,10 @@ def _confirm_triggered_breakpoint_ids(self, dex_bp_ids):
531
# Function and instruction breakpoints don't use conditions.
532
# FIXME: That's not a DAP restruction, so they could in future.
533
if dex_bp_id not in self.bp_info:
534
- assert dex_bp_id in self.function_bp_info or dex_bp_id in self.instruction_bp_info
+ assert (
535
+ dex_bp_id in self.function_bp_info
536
+ or dex_bp_id in self.instruction_bp_info
537
+ )
538
confirmed_breakpoint_ids.add(dex_bp_id)
539
continue
540
0 commit comments