diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test_event/dotest_channels.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test_event/dotest_channels.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test_event/dotest_channels.py b/lldb/packages/Python/lldbsuite/test_event/dotest_channels.py index 72ff9bd85f1..d69720e4f66 100644 --- a/lldb/packages/Python/lldbsuite/test_event/dotest_channels.py +++ b/lldb/packages/Python/lldbsuite/test_event/dotest_channels.py @@ -59,8 +59,7 @@ class UnpicklingForwardingReaderChannel(asyncore.dispatcher): # the initiators of the socket to await this to ensure # that this end is up and running (and therefore already # into the async map). - ack_bytes = bytearray() - ack_bytes.append(chr(42)) + ack_bytes = b'*' file_object.send(ack_bytes) def deserialize_payload(self): |