Fix updating reference passwords from KeePassXC-Browser (#2218)

* Allow updating reference passwords

* Fix function change after refactor
This commit is contained in:
Sami Vänttinen 2019-01-21 21:24:57 +02:00 committed by Jonathan White
parent 94430c300b
commit 0da9efdbd4
4 changed files with 35 additions and 1 deletions

View file

@ -140,6 +140,7 @@ void TestEntry::testClone()
QCOMPARE(entryClonePassRef->timeInfo().creationTime(), entryOrgClone->timeInfo().creationTime());
QVERIFY(entryClonePassRef->attributes()->isReference(EntryAttributes::PasswordKey));
QCOMPARE(entryClonePassRef->resolvePlaceholder(entryCloneUserRef->password()), entryOrg->password());
QCOMPARE(entryClonePassRef->attributes()->referenceUuid(EntryAttributes::PasswordKey), entryOrgClone->uuid());
}
void TestEntry::testResolveUrl()