Browse Source

Add explicit port number to WebSocket test

Paul-Louis Ageneau 4 years ago
parent
commit
037b9c9703
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/websocket.cpp

+ 1 - 1
test/websocket.cpp

@@ -63,7 +63,7 @@ void test_websocket() {
 		}
 	});
 
-	ws->open("wss://echo.websocket.org/");
+	ws->open("wss://echo.websocket.org:443/");
 
 	int attempts = 10;
 	while ((!ws->isOpen() || !received) && attempts--)