Преглед изворни кода

Merge pull request #456 from FridaTveit/AtbashAddIgnoreHint

atbash-cipher: add hint to @Ignore annotations
Stuart Kent пре 9 година
родитељ
комит
72f1963e9a
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1
    1
      exercises/atbash-cipher/src/test/java/AtbashTest.java

+ 1
- 1
exercises/atbash-cipher/src/test/java/AtbashTest.java Прегледај датотеку

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