소스 검색

atbash-cipher: change ignore hint

Frida Johanne Tveit 9 년 전
부모
커밋
3ac3930fbb
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("Remove to run test")
66
+        @Ignore("Remove to run tests")
67 67
         @Test
68 68
         public void test() {
69 69
             assertEquals(plaintext, new Atbash().decode(ciphertext));