diff options
Diffstat (limited to 'packages/Python/lldbsuite/test/python_api/default-constructor/sb_breakpoint.py')
-rw-r--r-- | packages/Python/lldbsuite/test/python_api/default-constructor/sb_breakpoint.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/Python/lldbsuite/test/python_api/default-constructor/sb_breakpoint.py b/packages/Python/lldbsuite/test/python_api/default-constructor/sb_breakpoint.py index 2c05990edae0..3bdf5879d30d 100644 --- a/packages/Python/lldbsuite/test/python_api/default-constructor/sb_breakpoint.py +++ b/packages/Python/lldbsuite/test/python_api/default-constructor/sb_breakpoint.py @@ -5,6 +5,7 @@ Fuzz tests an object after the default construction to make sure it does not cra import sys import lldb + def fuzz_obj(obj): obj.GetID() obj.ClearAllBreakpointSites() @@ -28,7 +29,7 @@ def fuzz_obj(obj): obj.SetQueueName("my queue") obj.GetQueueName() obj.SetScriptCallbackFunction(None) - obj.SetScriptCallbackBody (None) + obj.SetScriptCallbackBody(None) obj.GetNumResolvedLocations() obj.GetNumLocations() obj.GetDescription(lldb.SBStream()) |