summaryrefslogtreecommitdiff
path: root/client/test/testcomboboxsearch.cc
diff options
context:
space:
mode:
Diffstat (limited to 'client/test/testcomboboxsearch.cc')
-rw-r--r--client/test/testcomboboxsearch.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/test/testcomboboxsearch.cc b/client/test/testcomboboxsearch.cc
index ff737db..564f5c1 100644
--- a/client/test/testcomboboxsearch.cc
+++ b/client/test/testcomboboxsearch.cc
@@ -39,7 +39,7 @@ private slots:
// Full item search
QTest::keyClicks(cmb.qwidget(), "Item 2");
- QCOMPARE(cmb.value(), QString("Item 2"));
+ QCOMPARE(cmb.value(), QString("item2"));
}
void searchPrefix()
@@ -54,7 +54,7 @@ private slots:
QCOMPARE(qcmb->completer()->currentCompletion(), QString("Thingy"));
QTest::keyClicks(cmb.qwidget(), qcmb->completer()->currentCompletion());
- QCOMPARE(cmb.value(), QString("Thingy"));
+ QCOMPARE(cmb.value(), QString("thingy"));
}
void searchNegative()