Stop having ws send subcommand send a binary message in text mode, which would cause error in make ws_test shell script test

This commit is contained in:
Benjamin Sergeant
2019-09-25 15:39:43 -07:00
parent f8a581aa69
commit b26d463bad
6 changed files with 12 additions and 7 deletions

View File

@ -273,7 +273,7 @@ TEST_CASE("Websocket_chat", "[websocket_chat]")
chatB.sendMessage("from B1");
chatB.sendMessage("from B2");
// Test large messages that needs to be broken into small fragments
// Test large messages that need to be broken into small fragments
size_t size = 1 * 1024 * 1024; // ~1Mb
std::string bigMessage(size, 'a');
chatB.sendMessage(bigMessage);