Skip to content

Commit b2cc86f

Browse files
committed
I submitted the wrong version of the patch, with a bug along the
non-error path. Fix that.
1 parent 5d72757 commit b2cc86f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/packages/Python/lldbsuite/test/lldbutil.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -890,7 +890,7 @@ def run_to_breakpoint_do_run(test, target, bkpt, launch_info = None,
890890
error_string = "Failed to hit initial breakpoint:\n%s\n"%(print_stacktraces(process, True))
891891
test.fail(error_string)
892892

893-
test.assertEqual(process.GetState(), lldb.eStateStopped, error_string)
893+
test.assertEqual(process.GetState(), lldb.eStateStopped)
894894

895895
# Frame #0 should be at our breakpoint.
896896
threads = get_threads_stopped_at_breakpoint(

0 commit comments

Comments
 (0)