瀏覽代碼

Add explicit port number to WebSocket test

Paul-Louis Ageneau 4 年之前
父節點
當前提交
037b9c9703
共有 1 個文件被更改,包括 1 次插入1 次删除
  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--)