summaryrefslogtreecommitdiffstats
path: root/tests/auto/qhttp/tst_qhttp.cpp
diff options
context:
space:
mode:
authorAleksandar Sasha Babic <aleksandar.babic@nokia.com>2009-08-20 09:08:31 +0200
committerAleksandar Sasha Babic <aleksandar.babic@nokia.com>2009-08-20 09:08:31 +0200
commit5ce1ce19cc34c389ac4705d85582ee1c57519175 (patch)
tree5ee13ef2e3956d15644af5adc5ca8bb3dd95af86 /tests/auto/qhttp/tst_qhttp.cpp
parentdbdeae0da8702379c1dabb11bfe8440438c1fd98 (diff)
No need to use more time in QTimer::singleShot()
than on other platforms.
Diffstat (limited to 'tests/auto/qhttp/tst_qhttp.cpp')
-rw-r--r--tests/auto/qhttp/tst_qhttp.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/auto/qhttp/tst_qhttp.cpp b/tests/auto/qhttp/tst_qhttp.cpp
index b0835ace1b..fcc80ab164 100644
--- a/tests/auto/qhttp/tst_qhttp.cpp
+++ b/tests/auto/qhttp/tst_qhttp.cpp
@@ -1242,11 +1242,7 @@ void tst_QHttp::unexpectedRemoteClose()
QCoreApplication::instance()->processEvents();
QEventLoop loop;
-#ifndef Q_OS_SYMBIAN
QTimer::singleShot(3000, &loop, SLOT(quit()));
-#else
- QTimer::singleShot(30000, &loop, SLOT(quit()));
-#endif
QHttp http;
QObject::connect(&http, SIGNAL(done(bool)), &loop, SLOT(quit()));