mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
parent
35af1c6695
commit
880621c1fb
3 changed files with 5 additions and 3 deletions
|
@ -2113,7 +2113,7 @@ void TestCli::testShow()
|
|||
"Tags: \n"
|
||||
"\n"
|
||||
"Attachments:\n"
|
||||
" Sample attachment.txt (15.0 B)\n"));
|
||||
" Sample attachment.txt (15 B)\n"));
|
||||
|
||||
setInput("a");
|
||||
execCmd(showCmd, {"show", m_dbFile->fileName(), "--show-attachments", "/Homebanking/Subgroup/Subgroup Entry"});
|
||||
|
|
|
@ -38,7 +38,7 @@ void TestTools::testHumanReadableFileSize()
|
|||
constexpr auto kibibyte = 1024u;
|
||||
using namespace Tools;
|
||||
|
||||
QCOMPARE(createDecimal("1", "00", "B"), humanReadableFileSize(1));
|
||||
QCOMPARE(QString("1 B"), humanReadableFileSize(1));
|
||||
QCOMPARE(createDecimal("1", "00", "KiB"), humanReadableFileSize(kibibyte));
|
||||
QCOMPARE(createDecimal("1", "00", "MiB"), humanReadableFileSize(kibibyte * kibibyte));
|
||||
QCOMPARE(createDecimal("1", "00", "GiB"), humanReadableFileSize(kibibyte * kibibyte * kibibyte));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue