Bläddra i källkod

atbash-cipher: add hint to @Ignore annotations

Frida Johanne Tveit 9 år sedan
förälder
incheckning
10a51289b4
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1
    1
      exercises/atbash-cipher/src/test/java/AtbashTest.java

+ 1
- 1
exercises/atbash-cipher/src/test/java/AtbashTest.java Visa fil

63
             this.plaintext = plaintext;
63
             this.plaintext = plaintext;
64
         }
64
         }
65
 
65
 
66
-        @Ignore
66
+        @Ignore("Remove to run test")
67
         @Test
67
         @Test
68
         public void test() {
68
         public void test() {
69
             assertEquals(plaintext, new Atbash().decode(ciphertext));
69
             assertEquals(plaintext, new Atbash().decode(ciphertext));