Browse Source

Merge pull request #342 from rohit1104/atbash-cipher-test-update

atbash-cipher: Update to canonical data
FridaTveit 9 years ago
parent
commit
9f8244f0e8
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      exercises/atbash-cipher/src/test/java/AtbashTest.java

+ 2
- 1
exercises/atbash-cipher/src/test/java/AtbashTest.java View File

@@ -53,7 +53,8 @@ public class AtbashTest {
53 53
             return Arrays.asList(new Object[][] {
54 54
                     { "vcvix rhn", "exercism" },
55 55
                     { "zmlyh gzxov rhlug vmzhg vkkrm thglm v", "anobstacleisoftenasteppingstone" },
56
-                    { "gvhgr mt123 gvhgr mt", "testing123testing" }
56
+                    { "gvhgr mt123 gvhgr mt", "testing123testing" },
57
+                    { "gsvjf rxpyi ldmul cqfnk hlevi gsvoz abwlt", "thequickbrownfoxjumpsoverthelazydog" }
57 58
             });
58 59
         }
59 60