summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2017-04-28 23:24:57 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2017-05-02 08:24:22 +0000
commit28bf2c8fad3b103995794b3ac95457fe16ee461f (patch)
tree1b8cca3d7391b9b1df52ec9c054f55b8b90a93a3 /tests
parent50d9ee2a4fd8d7b507370043a8deb97c108913ae (diff)
Windows: Fix tst_QFileDialog2::completionOnLevelAfterRoot()
Change the check for the unambiguous match to be case insensitive. Task-number: QTBUG-60466 Change-Id: Iaa019cc803a56b015f45309fb1b3a7a8a3d82ee4 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io> (cherry picked from commit 425986acf32a60288a8a2ed9b3b2b180f60b5514)
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/widgets/dialogs/qfiledialog2/tst_qfiledialog2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/widgets/dialogs/qfiledialog2/tst_qfiledialog2.cpp b/tests/auto/widgets/dialogs/qfiledialog2/tst_qfiledialog2.cpp
index 656d4d46de..9324e8f4e2 100644
--- a/tests/auto/widgets/dialogs/qfiledialog2/tst_qfiledialog2.cpp
+++ b/tests/auto/widgets/dialogs/qfiledialog2/tst_qfiledialog2.cpp
@@ -708,7 +708,7 @@ void tst_QFileDialog2::completionOnLevelAfterRoot()
}
if (!invalid) {
foreach (const QString &check, entryList) {
- if (check.startsWith(entry.left(5)) && check != entry) {
+ if (check.startsWith(entry.left(5), Qt::CaseInsensitive) && check != entry) {
invalid = true;
break;
}