From eabd963e283d7c5cb061d1a9e701010e25899f3c Mon Sep 17 00:00:00 2001 From: evanchia Date: Mon, 23 Aug 2021 16:00:23 -0700 Subject: [PATCH] Fixed comment in remote console unit test Signed-off-by: evanchia --- .../tests/unit/test_remote_console_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/RemoteConsole/ly_remote_console/tests/unit/test_remote_console_commands.py b/Tools/RemoteConsole/ly_remote_console/tests/unit/test_remote_console_commands.py index e0ac82eb99..9be0685874 100755 --- a/Tools/RemoteConsole/ly_remote_console/tests/unit/test_remote_console_commands.py +++ b/Tools/RemoteConsole/ly_remote_console/tests/unit/test_remote_console_commands.py @@ -145,7 +145,7 @@ class TestRemoteConsole(): rc_instance = remote_console.RemoteConsole() rc_instance.on_display = mock.MagicMock() rc_instance.ready = mock.MagicMock() - msg = b'I0' # in python3 socket.recv returns byte array. 7 is AUTOCOMPLETELISTDONE + msg = b'I0' # in python3 socket.recv returns byte array. I is CONNECTMESSAGE rc_instance._handle_message(msg)