mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Fix minor typos (#10124)
This commit is contained in:
parent
681a0f5638
commit
9e119230d4
12 changed files with 15 additions and 15 deletions
|
@ -364,7 +364,7 @@ void TestEntrySearcher::testSkipProtected()
|
|||
m_entrySearcher.search("_testProtected:apple _testAttribute:testE1 _testAttribute:testE2", m_rootGroup);
|
||||
QCOMPARE(m_searchResult, {});
|
||||
|
||||
// also move the protected term around to execurise the short-circut logic
|
||||
// also move the protected term around to exercise the short-circuit logic
|
||||
m_searchResult = m_entrySearcher.search("_testAttribute:testE2 _testProtected:apple", m_rootGroup);
|
||||
QCOMPARE(m_searchResult, expectE2);
|
||||
m_searchResult = m_entrySearcher.search("_testAttribute:testE1 _testProtected:apple", m_rootGroup);
|
||||
|
|
|
@ -533,7 +533,7 @@ void TestMerge::assertDeletionNewerOnly(Database* db, const QMap<QString, QUuid>
|
|||
// newer deletion in source forces deletion
|
||||
QVERIFY(!mergedRootGroup->findEntryByUuid(identifiers["EntryDeletedInSourceAfterChangedInTarget"]));
|
||||
QVERIFY(db->containsDeletedObject(identifiers["EntryDeletedInSourceAfterChangedInTarget"]));
|
||||
// newer change in source privents deletion
|
||||
// newer change in source prevents deletion
|
||||
QVERIFY(mergedRootGroup->findEntryByUuid(identifiers["EntryDeletedInTargetBeforeChangedInSource"]));
|
||||
QVERIFY(!db->containsDeletedObject(identifiers["EntryDeletedInTargetBeforeChangedInSource"]));
|
||||
// newer deletion in target forces deletion
|
||||
|
@ -549,7 +549,7 @@ void TestMerge::assertDeletionNewerOnly(Database* db, const QMap<QString, QUuid>
|
|||
QVERIFY(db->containsDeletedObject(identifiers["GroupDeletedInSourceAfterEntryUpdatedInTarget"]));
|
||||
QVERIFY(!mergedRootGroup->findEntryByUuid(identifiers["EntryDeletedInSourceAfterEntryUpdatedInTarget"]));
|
||||
QVERIFY(db->containsDeletedObject(identifiers["EntryDeletedInSourceAfterEntryUpdatedInTarget"]));
|
||||
// newer change in source privents deletion
|
||||
// newer change in source prevents deletion
|
||||
QVERIFY(mergedRootGroup->findGroupByUuid(identifiers["GroupDeletedInTargetBeforeEntryUpdatedInSource"]));
|
||||
QVERIFY(!db->containsDeletedObject(identifiers["GroupDeletedInTargetBeforeEntryUpdatedInSource"]));
|
||||
QVERIFY(mergedRootGroup->findEntryByUuid(identifiers["EntryDeletedInTargetBeforeEntryUpdatedInSource"]));
|
||||
|
@ -890,7 +890,7 @@ void TestMerge::testUpdateEntryDifferentLocation()
|
|||
QCOMPARE(entryDestinationMerged->username(), QString("username"));
|
||||
QCOMPARE(entryDestinationMerged->group()->name(), QString("group3"));
|
||||
QCOMPARE(uuidBeforeSyncing, entryDestinationMerged->uuid());
|
||||
// default merge strategie is KeepNewer - therefore the older location is used!
|
||||
// default merge strategy is KeepNewer - therefore the older location is used!
|
||||
QCOMPARE(entryDestinationMerged->timeInfo().locationChanged(), sourceLocationChanged);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue