================
@@ -179,14 +174,13 @@ def verify_breakpoint_hit(self, breakpoint_ids: 
List[Union[int, str]]):
                     continue
                 hit_breakpoint_ids = body["hitBreakpointIds"]
                 for bp in hit_breakpoint_ids:
-                    if str(bp) in normalized_bp_ids:
+                    if bp in breakpoint_ids:
                         return
-        self.assertTrue(
-            False,
+        self.fail(
----------------
DrSergei wrote:

Could you fix the same pattern on line 209

https://github.com/llvm/llvm-project/pull/178041
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to