diff options
Diffstat (limited to 'lldb/test/python_api/default-constructor/sb_process.py')
-rw-r--r-- | lldb/test/python_api/default-constructor/sb_process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/python_api/default-constructor/sb_process.py b/lldb/test/python_api/default-constructor/sb_process.py index 4f892e57f14..f74df33ce10 100644 --- a/lldb/test/python_api/default-constructor/sb_process.py +++ b/lldb/test/python_api/default-constructor/sb_process.py @@ -8,7 +8,7 @@ import lldb def fuzz_obj(obj): obj.GetTarget() obj.GetByteOrder() - obj.PutSTDIN("my data", 7) + obj.PutSTDIN("my data") obj.GetSTDOUT(6) obj.GetSTDERR(6) event = lldb.SBEvent() |