summaryrefslogtreecommitdiffstats
path: root/tests/auto/network/access/spdy/tst_spdy.cpp
diff options
context:
space:
mode:
authorMårten Nordheim <marten.nordheim@qt.io>2020-02-29 11:39:58 +0100
committerTimur Pocheptsov <timur.pocheptsov@qt.io>2020-03-03 18:25:57 +0100
commit8f8eb99991216c0833c23a0f068e036a70e3b060 (patch)
tree2f566ba053c04e24f46fdc9dc27de828c8ec108a /tests/auto/network/access/spdy/tst_spdy.cpp
parentdd0a197be40bdec1af02e58f50926afb11af9509 (diff)
QNetworkReply: Deprecate 'error' signal, use 'errorOccurred' instead
[ChangeLog][Deprecation Notice] QNetworkReply::error() (the signal) is deprecated; superseded by errorOccurred() Change-Id: I4f1ef410fd22d34ddf87e89cc5709cc60703af95 Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
Diffstat (limited to 'tests/auto/network/access/spdy/tst_spdy.cpp')
-rw-r--r--tests/auto/network/access/spdy/tst_spdy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/network/access/spdy/tst_spdy.cpp b/tests/auto/network/access/spdy/tst_spdy.cpp
index 5701f4911c..1b0b3aec6b 100644
--- a/tests/auto/network/access/spdy/tst_spdy.cpp
+++ b/tests/auto/network/access/spdy/tst_spdy.cpp
@@ -581,7 +581,7 @@ void tst_Spdy::errors()
if (ignoreSslErrors)
reply->ignoreSslErrors();
QSignalSpy finishedSpy(reply, SIGNAL(finished()));
- QSignalSpy errorSpy(reply, SIGNAL(error(QNetworkReply::NetworkError)));
+ QSignalSpy errorSpy(reply, SIGNAL(errorOccurred(QNetworkReply::NetworkError)));
QObject::connect(reply, SIGNAL(finished()), &QTestEventLoop::instance(), SLOT(exitLoop()));