Skip to content

Commit 46ce2bf

Browse files
committed
Addres review comment re self.assertTrue
1 parent 8a9aa70 commit 46ce2bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ def stepIn(
241241
response = self.dap_server.request_stepIn(
242242
threadId=threadId, targetId=targetId, granularity=granularity
243243
)
244-
assert response["success"] is True
244+
self.assertTrue(response["success"])
245245
if waitForStop:
246246
return self.dap_server.wait_for_stopped()
247247
return None

0 commit comments

Comments
 (0)