소스 검색

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--)