summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/manual/compliance/tst_compliance.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/manual/compliance/tst_compliance.cpp b/tests/manual/compliance/tst_compliance.cpp
index 0140dcf..556cc56 100644
--- a/tests/manual/compliance/tst_compliance.cpp
+++ b/tests/manual/compliance/tst_compliance.cpp
@@ -71,7 +71,7 @@ private:
};
tst_ComplianceTest::tst_ComplianceTest() :
- m_url("wss://localhost:9001")
+ m_url("ws://localhost:9001")
{
}
@@ -99,7 +99,6 @@ void tst_ComplianceTest::runTestCase(int nbr, int total)
}
QWebSocket *pWebSocket = new QWebSocket;
- pWebSocket->ignoreSslErrors();
QSignalSpy spy(pWebSocket, SIGNAL(disconnected()));
//next for every case, connect to url
@@ -136,7 +135,6 @@ void tst_ComplianceTest::autobahnTest()
{
//connect to autobahn server at url ws://ipaddress:port/getCaseCount
QWebSocket *pWebSocket = new QWebSocket;
- pWebSocket->ignoreSslErrors();
QUrl url = m_url;
int numberOfTestCases = 0;
QSignalSpy spy(pWebSocket, SIGNAL(disconnected()));