summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMarkus Goetz <Markus.Goetz@nokia.com>2009-07-13 11:47:50 (GMT)
committerMarkus Goetz <Markus.Goetz@nokia.com>2009-07-13 11:47:50 (GMT)
commitcb3bddc9a5e4a664500eec3997dedadd67de3652 (patch)
treef0c44be38e35c5b6e41fd3fe608f6d4236855b4c /tests
parent1ed4c52dd7ad3cb6b0d846464b69489031ab68a5 (diff)
downloadQt-cb3bddc9a5e4a664500eec3997dedadd67de3652.zip
Qt-cb3bddc9a5e4a664500eec3997dedadd67de3652.tar.gz
Qt-cb3bddc9a5e4a664500eec3997dedadd67de3652.tar.bz2
tst_qnetworkreply: qDebug instead of qWarning
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qnetworkreply/tst_qnetworkreply.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qnetworkreply/tst_qnetworkreply.cpp b/tests/auto/qnetworkreply/tst_qnetworkreply.cpp
index 18919a7..ff315de 100644
--- a/tests/auto/qnetworkreply/tst_qnetworkreply.cpp
+++ b/tests/auto/qnetworkreply/tst_qnetworkreply.cpp
@@ -3186,7 +3186,7 @@ void tst_QNetworkReply::httpDownloadPerformance()
QVERIFY(!QTestEventLoop::instance().timeout());
qint64 elapsed = time.elapsed();
- qWarning() << "tst_QNetworkReply::httpDownloadPerformance" << elapsed << "msec, "
+ qDebug() << "tst_QNetworkReply::httpDownloadPerformance" << elapsed << "msec, "
<< ((UploadSize/1024.0)/(elapsed/1000.0)) << " kB/sec";
delete reply;