diff options
-rw-r--r-- | lldb/test/python_api/default-constructor/sb_breakpoint.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/test/python_api/default-constructor/sb_breakpoint.py b/lldb/test/python_api/default-constructor/sb_breakpoint.py index 2bdc539a001..1efe131bfaa 100644 --- a/lldb/test/python_api/default-constructor/sb_breakpoint.py +++ b/lldb/test/python_api/default-constructor/sb_breakpoint.py @@ -27,7 +27,8 @@ def fuzz_obj(obj): obj.GetThreadName() obj.SetQueueName("my queue") obj.GetQueueName() - obj.SetCallback(None, None) + obj.SetScriptCallbackFunction(None) + obj.SetScriptCallbackBody (None) obj.GetNumResolvedLocations() obj.GetNumLocations() obj.GetDescription(lldb.SBStream()) |