Explorar el Código

Add explicit port number to WebSocket test

Paul-Louis Ageneau hace 4 años
padre
commit
037b9c9703
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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--)