Ver código fonte

slight test tweak

Jared Norris 6 anos atrás
pai
commit
33171598ca
2 arquivos alterados com 1 adições e 5 exclusões
  1. 0
    4
      Crypto/src/ROT13.java
  2. 1
    1
      Crypto/src/ROT13Test.java

+ 0
- 4
Crypto/src/ROT13.java Ver arquivo

@@ -15,10 +15,6 @@ public class ROT13  {
15 15
 
16 16
     ROT13(){ cryptKey = rotate(alphabet, 'n'); }
17 17
 
18
-    public String crypt(String text) throws UnsupportedOperationException {
19
-        return encrypt(text);
20
-    }
21
-
22 18
     @SuppressWarnings("Duplicates")
23 19
     public String encrypt(String text) {
24 20
         StringBuilder result = new StringBuilder();

+ 1
- 1
Crypto/src/ROT13Test.java Ver arquivo

@@ -83,7 +83,7 @@ public class ROT13Test {
83 83
         System.out.println(Q1);
84 84
 
85 85
         // When
86
-        String actual = cipher.crypt(cipher.crypt(Q1));
86
+        String actual = cipher.encrypt(cipher.encrypt(Q1));
87 87
         System.out.println(actual);
88 88
         // Then
89 89
         assertTrue(actual.equals(Q1));