From e050385e27ad3867de3b686b13d951d07f0b32c6 Mon Sep 17 00:00:00 2001 From: Felix Geyer Date: Mon, 2 Jul 2012 22:12:07 +0200 Subject: [PATCH] Increase wait time in TestGui::testSearch() a bit. --- tests/gui/TestGui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/gui/TestGui.cpp b/tests/gui/TestGui.cpp index 64ddbca73..3a013d560 100644 --- a/tests/gui/TestGui.cpp +++ b/tests/gui/TestGui.cpp @@ -172,13 +172,13 @@ void TestGui::testSearch() QToolButton* clearSearch = dbWidget->findChild("clearButton"); QTest::keyClicks(searchEdit, "ZZZ"); - QTest::qWait(120); + QTest::qWait(200); QCOMPARE(entryView->model()->rowCount(), 0); QTest::mouseClick(clearSearch, Qt::LeftButton); QTest::keyClicks(searchEdit, "some"); - QTest::qWait(120); + QTest::qWait(200); QCOMPARE(entryView->model()->rowCount(), 2);