aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2022-12-01 15:50:03 +0100
committerJarek Kobus <jaroslaw.kobus@qt.io>2022-12-01 15:18:40 +0000
commit8d6d51ec3eac9e80430588e148eb9fae3c1159cd (patch)
treec26753de8357cd6d9977388d1e269ce4f65e26e2
parentad90dd958a4e8356f259bd1bb6e07ecaee4676c4 (diff)
tst_TaskTree: Increase the timeout
Change-Id: I8306aeb3719feb295a27339736209159f688a734 Reviewed-by: hjk <hjk@qt.io>
-rw-r--r--tests/auto/utils/tasktree/tst_tasktree.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/utils/tasktree/tst_tasktree.cpp b/tests/auto/utils/tasktree/tst_tasktree.cpp
index d70a0b25aa..a764cb4c94 100644
--- a/tests/auto/utils/tasktree/tst_tasktree.cpp
+++ b/tests/auto/utils/tasktree/tst_tasktree.cpp
@@ -487,7 +487,7 @@ void tst_TaskTree::processTree()
timedOut = true;
eventLoop.quit();
});
- timer.setInterval(1000);
+ timer.setInterval(2000);
timer.setSingleShot(true);
timer.start();
eventLoop.exec();
@@ -624,7 +624,7 @@ void tst_TaskTree::storage()
QTimer timer;
connect(&timer, &QTimer::timeout, &eventLoop, &QEventLoop::quit);
- timer.setInterval(1000);
+ timer.setInterval(2000);
timer.setSingleShot(true);
timer.start();
eventLoop.exec();