We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 639b1ee commit 279a5e3Copy full SHA for 279a5e3
src/test/java/com/thealgorithms/ciphers/BlowfishTest.java
@@ -32,6 +32,7 @@ void testDecrypt() {
32
// when
33
String plainText = blowfish.decrypt(cipherText, key);
34
String plainText2= blowfish.decrypt(cipherText, key);
35
+ String plainText3= blowfish.decrypt(cipherText, key);
36
// then
37
assertEquals(expectedOutput, plainText);
38
}
0 commit comments