Skip to content

Commit 6b2ea61

Browse files
authored
Merge pull request #1426 from Teemperor/cherry/de0175d04bc3679c7bd8dc64520e790bf38f30b0
[lldb] Make TestIOHandlerResizeNoEditline pass with Python 2
2 parents 3f62c7e + 53e1ef6 commit 6b2ea61

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

lldb/test/API/iohandler/resize/TestIOHandlerResizeNoEditline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def test_resize_no_editline(self):
1313
dbg = lldb.SBDebugger.Create(False)
1414
# Set the input handle to some stream so that we don't start the
1515
# editline interface.
16-
dbg.SetInputFileHandle(io.BytesIO(b""), True)
16+
dbg.SetInputFileHandle(open("input_file"), True)
1717
opts = lldb.SBCommandInterpreterRunOptions()
1818
# Launch the command interpreter now.
1919
dbg.RunCommandInterpreter(True, True, opts, 0, False, False)

lldb/test/API/iohandler/resize/input_file

Whitespace-only changes.

0 commit comments

Comments
 (0)