diff --git a/src/test/java/com/thealgorithms/ciphers/BlowfishTest.java b/src/test/java/com/thealgorithms/ciphers/BlowfishTest.java index ef5e634f781b..449f3488e646 100644 --- a/src/test/java/com/thealgorithms/ciphers/BlowfishTest.java +++ b/src/test/java/com/thealgorithms/ciphers/BlowfishTest.java @@ -31,7 +31,8 @@ void testDecrypt() { // when String plainText = blowfish.decrypt(cipherText, key); - + String plainText2= blowfish.decrypt(cipherText, key); + String plainText3= blowfish.decrypt(cipherText, key); // then assertEquals(expectedOutput, plainText); }