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:
authorpasdam <>2018-03-23 13:18:06 +0300
committerJonathan White <support@dmapps.us>2018-07-07 05:23:52 +0300
commitb4d806ad412b33b9af63f926c06453b63c06a129 (patch)
treed05933ccf35ba9796fb21460a30e0d21faa911d3 /tests/TestEntry.cpp
parentad4423d226da6105e0732a15918c6429e2ca8ed4 (diff)
Fixed issues with initial commit
Diffstat (limited to 'tests/TestEntry.cpp')
-rw-r--r--tests/TestEntry.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/TestEntry.cpp b/tests/TestEntry.cpp
index aa4426211..5e5d7bc3c 100644
--- a/tests/TestEntry.cpp
+++ b/tests/TestEntry.cpp
@@ -282,8 +282,8 @@ void TestEntry::testResolveRecursivePlaceholders()
auto* entry7 = new Entry();
entry7->setGroup(root);
- entry7->setUuid(Uuid::random());
- entry7->setTitle(QString("{REF:T@I:%1} and something else").arg(entry3->uuid().toHex()));
+ entry7->setUuid(QUuid::createUuid());
+ entry7->setTitle(QString("{REF:T@I:%1} and something else").arg(QString(entry3->uuid().toRfc4122().toHex())));
entry7->setUsername(QString("{TITLE}"));
entry7->setPassword(QString("PASSWORD"));