diff options
author | Markus Goetz <Markus.Goetz@nokia.com> | 2010-01-18 15:52:34 (GMT) |
---|---|---|
committer | Markus Goetz <Markus.Goetz@nokia.com> | 2010-01-18 15:52:34 (GMT) |
commit | ef14a38247f2a8b8a6094e7edeba0aef6e9f9c80 (patch) | |
tree | 8297bdc825ff78bf3a3ad7e78a4f12813f9dc0e2 /tests/auto/qnetworkreply | |
parent | 330e852641121c0dddf2e9ac7dc6a7bafb5432dd (diff) | |
download | Qt-ef14a38247f2a8b8a6094e7edeba0aef6e9f9c80.zip Qt-ef14a38247f2a8b8a6094e7edeba0aef6e9f9c80.tar.gz Qt-ef14a38247f2a8b8a6094e7edeba0aef6e9f9c80.tar.bz2 |
tst_qnetworkreply: There were 2 unneeded QSignalSpy
Was a cut n paste error probably.
Reviewed-by: TrustMe
Diffstat (limited to 'tests/auto/qnetworkreply')
-rw-r--r-- | tests/auto/qnetworkreply/tst_qnetworkreply.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/auto/qnetworkreply/tst_qnetworkreply.cpp b/tests/auto/qnetworkreply/tst_qnetworkreply.cpp index 3bf06d7..eec4797 100644 --- a/tests/auto/qnetworkreply/tst_qnetworkreply.cpp +++ b/tests/auto/qnetworkreply/tst_qnetworkreply.cpp @@ -3186,7 +3186,6 @@ void tst_QNetworkReply::lastModifiedHeaderForFile() QNetworkRequest request(url); QNetworkReplyPtr reply = manager.head(request); - QSignalSpy spy(reply, SIGNAL(uploadProgress(qint64,qint64))); connect(reply, SIGNAL(finished()), &QTestEventLoop::instance(), SLOT(exitLoop())); QTestEventLoop::instance().enterLoop(10); QVERIFY(!QTestEventLoop::instance().timeout()); @@ -3202,7 +3201,6 @@ void tst_QNetworkReply::lastModifiedHeaderForHttp() QNetworkRequest request(url); QNetworkReplyPtr reply = manager.head(request); - QSignalSpy spy(reply, SIGNAL(uploadProgress(qint64,qint64))); connect(reply, SIGNAL(finished()), &QTestEventLoop::instance(), SLOT(exitLoop())); QTestEventLoop::instance().enterLoop(10); QVERIFY(!QTestEventLoop::instance().timeout()); |