diff options
author | Kurt Pattyn <pattyn.kurt@gmail.com> | 2014-02-09 10:24:18 +0100 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2014-02-09 10:24:44 +0100 |
commit | ba776ed9c56c14fe3475b324fe92e853ed1a2fb7 (patch) | |
tree | f356bc989184b42a075e6d145d2b14749b8fb95d /tests | |
parent | 6d64f337102d6181c8578daf8ba0b675049f6039 (diff) | |
download | qtwebsockets-ba776ed9c56c14fe3475b324fe92e853ed1a2fb7.tar.gz |
Remove superfluous argument
Change-Id: I7fa01d47d66411572f3f66f4ed5d8df04ac6b8b0
Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qwebsocket/tst_qwebsocket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qwebsocket/tst_qwebsocket.cpp b/tests/auto/qwebsocket/tst_qwebsocket.cpp index d1ad0a9..2273d9e 100644 --- a/tests/auto/qwebsocket/tst_qwebsocket.cpp +++ b/tests/auto/qwebsocket/tst_qwebsocket.cpp @@ -171,7 +171,7 @@ void tst_QWebSocket::tst_invalidOpen() QSignalSpy pongSpy(&socket, SIGNAL(pong(quint64,QByteArray))); QSignalSpy bytesWrittenSpy(&socket, SIGNAL(bytesWritten(qint64))); - socket.open(QUrl(QStringLiteral("ws://127.0.0.1:1/")), true); + socket.open(QUrl(QStringLiteral("ws://127.0.0.1:1/"))); QVERIFY(socket.origin().isEmpty()); QCOMPARE(socket.version(), QWebSocketProtocol::VersionLatest); |