mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +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
64eb3d0c82
commit
abcff25e57
1 changed files with 2 additions and 2 deletions
|
@ -49,6 +49,6 @@ void TestPassphraseGenerator::testWordCase()
|
|||
|
||||
generator.setWordCase(PassphraseGenerator::TITLECASE);
|
||||
passphrase = generator.generatePassphrase();
|
||||
QRegularExpression regex("^([A-Z][a-z]* ?)+$");
|
||||
QVERIFY(regex.match(passphrase).hasMatch());
|
||||
QRegularExpression regex("^(?:[A-Z][a-z-]* )*[A-Z][a-z-]*$");
|
||||
QVERIFY2(regex.match(passphrase).hasMatch(), qPrintable(passphrase));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue