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
diff options
context:
space:
mode:
authorJanek Bevendorff <janek@jbev.net>2020-05-26 18:58:52 +0300
committerJanek Bevendorff <janek@jbev.net>2020-05-30 11:45:00 +0300
commit9d2e066acae0cd7bd3447bf3c5fa8ff0c0c4f073 (patch)
tree24256fa3c1413723e07985eee70cfce898bb1ae9 /tests/TestCsvExporter.cpp
parent5c69875b59d0e1cd27c6631506f1e06323f4068f (diff)
Clean up various parts of the UI and rearrange settings
- Unify widget layouts and margins - Fix tab order on a bunch of widgets - Fix broken entry/group edit form layout and replace with grid layout - Rearrange some settings for better logical grouping - Fix some settings checkboxes not being enabled/disabled on load - Fix "General" settings tab scrolling - Rename "Root" group to "Passwords" - Update demo.kdbx accordingly and redownload favicons - Change entry path display to use slash separators - Reduce Medium and Large icon sizes slightly
Diffstat (limited to 'tests/TestCsvExporter.cpp')
-rw-r--r--tests/TestCsvExporter.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/tests/TestCsvExporter.cpp b/tests/TestCsvExporter.cpp
index 3e6623610..63ba11488 100644
--- a/tests/TestCsvExporter.cpp
+++ b/tests/TestCsvExporter.cpp
@@ -64,7 +64,7 @@ void TestCsvExporter::testExport()
QString expectedResult = QString()
.append(ExpectedHeaderLine)
- .append("\"Root/Test Group Name\",\"Test Entry Title\",\"Test Username\",\"Test "
+ .append("\"Passwords/Test Group Name\",\"Test Entry Title\",\"Test Username\",\"Test "
"Password\",\"http://test.url\",\"Test Notes\"\n");
QCOMPARE(QString::fromUtf8(buffer.buffer().constData()), expectedResult);
@@ -96,8 +96,9 @@ void TestCsvExporter::testNestedGroups()
QVERIFY(buffer.open(QIODevice::ReadWrite));
m_csvExporter->exportDatabase(&buffer, m_db);
- QCOMPARE(QString::fromUtf8(buffer.buffer().constData()),
- QString()
- .append(ExpectedHeaderLine)
- .append("\"Root/Test Group Name/Test Sub Group Name\",\"Test Entry Title\",\"\",\"\",\"\",\"\"\n"));
+ QCOMPARE(
+ QString::fromUtf8(buffer.buffer().constData()),
+ QString()
+ .append(ExpectedHeaderLine)
+ .append("\"Passwords/Test Group Name/Test Sub Group Name\",\"Test Entry Title\",\"\",\"\",\"\",\"\"\n"));
}