We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91e7110 commit 13984bfCopy full SHA for 13984bf
exercises/practice/simple-cipher/src/test/java/SimpleCipherTest.java
@@ -73,8 +73,10 @@ public void substitutionCipherCanDecode() {
73
74
@Disabled("Remove to run test")
75
@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")
+ @DisplayName(
+ "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
+ )
80
public void substitutionCipherIsReversibleGivenKey() {
81
String plainText = "abcdefghij";
82
assertThat(substitutionCipher.decode(substitutionCipher.encode(plainText))).isEqualTo(plainText);
0 commit comments