Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJonathan White <support@dmapps.us>2020-01-28 05:02:50 +0300
committerJonathan White <support@dmapps.us>2020-01-28 05:02:50 +0300
commitb0ad4a50d9f5bfbfa6d806a860a7569d7ee9b63b (patch)
treec50fcffe7ff89d5982954ee8e641c05c7274f45b /tests
parent91755fa83ae70013b3f5e10ab19c843424df1c68 (diff)
Fix GUI test failures
Diffstat (limited to 'tests')
-rw-r--r--tests/gui/TestGui.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/gui/TestGui.cpp b/tests/gui/TestGui.cpp
index 64e913c76..8ce9b0587 100644
--- a/tests/gui/TestGui.cpp
+++ b/tests/gui/TestGui.cpp
@@ -882,6 +882,7 @@ void TestGui::testSearch()
QTest::keyClick(searchTextEdit, Qt::Key_C, Qt::ControlModifier);
QCOMPARE(searchedEntry->password(), clipboard->text());
// Ensure Down focuses on entry view when search text is selected
+ QTest::keyClick(searchTextEdit, Qt::Key_A, Qt::ControlModifier);
QTest::keyClick(searchTextEdit, Qt::Key_Down);
QTRY_VERIFY(entryView->hasFocus());
QCOMPARE(entryView->currentEntry(), searchedEntry);