Skip to content

Commit c1c6b0f

Browse files
committed
fix(tests): correct indentation in assertion for encryption verification
1 parent afbf7af commit c1c6b0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/thealgorithms/ciphers/PermutationCipherTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ void testSpecificExampleFromDescription() {
246246
// then
247247
// Block 1: "HEL" -> positions {3,1,2} -> "LHE"
248248
// Block 2: "LOX" -> positions {3,1,2} -> "XLO"
249-
assertEquals("LHEXLO", encrypted);
249+
assertEquals("LHEXLO", encrypted);
250250
// Verify decryption
251251
String decrypted = cipher.decrypt(encrypted, key);
252252
assertEquals("HELLO", decrypted);

0 commit comments

Comments
 (0)