From c3e32a950251680e28c77efdfa311005dcf04499 Mon Sep 17 00:00:00 2001 From: An-anonymous-coder <130810665+An-anonymous-coder@users.noreply.github.com> Date: Sun, 23 Feb 2025 09:46:25 -0500 Subject: [PATCH] Removed newline and words with hyphen (#11409) The newline at the end of the file was removed, as well as 4 words that contain a hyphen: drop-in felt-tip t-shirt yo-yo --- share/wordlists/eff_large.wordlist | 4 ---- tests/gui/TestGui.cpp | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/share/wordlists/eff_large.wordlist b/share/wordlists/eff_large.wordlist index f512e55d0..1a5ae7862 100644 --- a/share/wordlists/eff_large.wordlist +++ b/share/wordlists/eff_large.wordlist @@ -2006,7 +2006,6 @@ drizzly drone drool droop -drop-in dropforge dropkick droplet @@ -2525,7 +2524,6 @@ feed feel feisty feline -felt-tip feminine feminism feminist @@ -6637,7 +6635,6 @@ synthesis synthetic syrup system -t-shirt tabasco tabby tableful @@ -7745,7 +7742,6 @@ yiddish yield yin yippee -yo-yo yodel yoga yogurt diff --git a/tests/gui/TestGui.cpp b/tests/gui/TestGui.cpp index 0513b662d..d5acaf537 100644 --- a/tests/gui/TestGui.cpp +++ b/tests/gui/TestGui.cpp @@ -874,7 +874,7 @@ void TestGui::testDicewareEntryEntropy() auto* strengthLabel = pwGeneratorWidget->findChild("strengthLabel"); auto* wordLengthLabel = pwGeneratorWidget->findChild("passwordLengthLabel"); - QTRY_COMPARE_WITH_TIMEOUT(entropyLabel->text(), QString("Entropy: 77.55 bit"), 200); + QTRY_COMPARE_WITH_TIMEOUT(entropyLabel->text(), QString("Entropy: 77.54 bit"), 200); QCOMPARE(strengthLabel->text(), QString("Password Quality: Good")); QCOMPARE(wordLengthLabel->text(), QString("Characters: %1").arg(QString::number(pwGeneratorWidget->getGeneratedPassword().length())));