Skip to content

Commit 13984bf

Browse files
authored
Apply suggestion from @jagdish-15
1 parent 91e7110 commit 13984bf

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

exercises/practice/simple-cipher/src/test/java/SimpleCipherTest.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,10 @@ public void substitutionCipherCanDecode() {
7373

7474
@Disabled("Remove to run test")
7575
@Test
76-
@DisplayName("Is reversible. I.e., if you apply decode in a encoded result, \n" +
77-
"you must see the same plaintext encode parameter as a result of the decode method")
76+
@DisplayName(
77+
"Is reversible. I.e., if you apply decode in a encoded result, " +
78+
"you must see the same plaintext encode parameter as a result of the decode method"
79+
)
7880
public void substitutionCipherIsReversibleGivenKey() {
7981
String plainText = "abcdefghij";
8082
assertThat(substitutionCipher.decode(substitutionCipher.encode(plainText))).isEqualTo(plainText);

0 commit comments

Comments
 (0)