Commit 1b9a3c75 authored by Timur Pocheptsov's avatar Timur Pocheptsov
Browse files

Fix apparently invalid auto-test (qmlwebsockets)


It makes sense to first start listening (server.listen = true) and then
connect (socket.active = true).

Task-number: QTBUG-59388
Change-Id: I4235dad87ee3a62ebf75cec39e5d9fa4b7ed7552
Reviewed-by: default avatarEdward Welbourne <edward.welbourne@qt.io>
Showing with 1 addition and 1 deletion
......@@ -52,8 +52,8 @@ Rectangle {
TestCase {
function ensureConnected() {
socket.active = true;
server.listen = true;
socket.active = true;
tryCompare(socket, 'status', WebSocket.Open);
verify(server.currentSocket);
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment