diff options
author | Alexis Menard <alexis.menard@nokia.com> | 2009-09-30 12:34:50 (GMT) |
---|---|---|
committer | Alexis Menard <alexis.menard@nokia.com> | 2009-09-30 12:34:50 (GMT) |
commit | ca2834b0056b301f1d1b732840fcb106fdd477ac (patch) | |
tree | cb9f3508e310c9786a254144e3ce837d4471cdaa /tests | |
parent | 71b3a015d5f051c732646ead395e56a609cc51af (diff) | |
download | Qt-ca2834b0056b301f1d1b732840fcb106fdd477ac.zip Qt-ca2834b0056b301f1d1b732840fcb106fdd477ac.tar.gz Qt-ca2834b0056b301f1d1b732840fcb106fdd477ac.tar.bz2 |
Don't need to wait that much.
Reviewed-by:TrustMe
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qfiledialog/tst_qfiledialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qfiledialog/tst_qfiledialog.cpp b/tests/auto/qfiledialog/tst_qfiledialog.cpp index 9b083ea..f6b082f 100644 --- a/tests/auto/qfiledialog/tst_qfiledialog.cpp +++ b/tests/auto/qfiledialog/tst_qfiledialog.cpp @@ -2175,7 +2175,7 @@ void tst_QFiledialog::QTBUG4419_lineEditSelectAll() QTRY_COMPARE(fd.isVisible(), true); QTRY_COMPARE(QApplication::activeWindow(), static_cast<QWidget*>(&fd)); - QTest::qWait(500); + QTest::qWait(250); QLineEdit *lineEdit = qFindChild<QLineEdit*>(&fd, "fileNameEdit"); QCOMPARE(tempPath + QChar('/') + lineEdit->text(), t->fileName()); |