mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Fix passphrase generator test (#10890)
* Fix passphrase generator test Previously, the test case was assuming the wrong regex. In particular, the default word list (eff_large.wordlist) contains several words that contain dashes. Adjust the regex used in the test to reflect this. This should fix rare test failures
This commit is contained in:
parent
e72cc7dd73
commit
af3b4074e2
1 changed files with 2 additions and 2 deletions
|
@ -49,6 +49,6 @@ void TestPassphraseGenerator::testWordCase()
|
||||||
|
|
||||||
generator.setWordCase(PassphraseGenerator::TITLECASE);
|
generator.setWordCase(PassphraseGenerator::TITLECASE);
|
||||||
passphrase = generator.generatePassphrase();
|
passphrase = generator.generatePassphrase();
|
||||||
QRegularExpression regex("^([A-Z][a-z]* ?)+$");
|
QRegularExpression regex("^(?:[A-Z][a-z-]* )*[A-Z][a-z-]*$");
|
||||||
QVERIFY(regex.match(passphrase).hasMatch());
|
QVERIFY2(regex.match(passphrase).hasMatch(), qPrintable(passphrase));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue