Skip to content
Prev Previous commit
Next Next commit
fix(tests): correct indentation in assertion for encryption verification
  • Loading branch information
dheeraj1010 committed Oct 7, 2025
commit c1c6b0f76110c0343dbb66d13389bdf3aebecb2d
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ void testSpecificExampleFromDescription() {
// then
// Block 1: "HEL" -> positions {3,1,2} -> "LHE"
// Block 2: "LOX" -> positions {3,1,2} -> "XLO"
assertEquals("LHEXLO", encrypted);
assertEquals("LHEXLO", encrypted);
// Verify decryption
String decrypted = cipher.decrypt(encrypted, key);
assertEquals("HELLO", decrypted);
Expand Down