Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(tests): remove unnecessary whitespace in test assertion for encry…
…ption
  • Loading branch information
dheeraj1010 committed Oct 7, 2025
commit afbf7afe6576946f8cc89fe07fadca66292522cd
Original file line number Diff line number Diff line change
Expand Up @@ -191,4 +191,4 @@ private String removePadding(String text) {
public char getPaddingChar() {
return PADDING_CHAR;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +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