Fixed typos

This commit is contained in:
2021-12-30 23:16:27 -05:00
parent 931594d5fa
commit d37b3fc35a

View File

@@ -154,7 +154,7 @@ public class TestVigenere{
assertEquals("Vigenere failed mixed case, whitespace, symbol decoding with mangled keyword.", correctOutput, output); assertEquals("Vigenere failed mixed case, whitespace, symbol decoding with mangled keyword.", correctOutput, output);
} }
@Test @Test
public void testNoSymbolDecodes() throws Exception{ public void testNoSymbolDecode() throws Exception{
Vigenere cipher = new Vigenere(true, true, false); Vigenere cipher = new Vigenere(true, true, false);
//Test lowercase decoding //Test lowercase decoding
@@ -344,7 +344,7 @@ public class TestVigenere{
assertEquals("Vigenere failed mixed case, whitespace, symbol encoding with mangled keyword.", correctOutput, output); assertEquals("Vigenere failed mixed case, whitespace, symbol encoding with mangled keyword.", correctOutput, output);
} }
@Test @Test
public void testNoCaptialEncode() throws Exception{ public void testNoCapitalEncode() throws Exception{
Vigenere cipher = new Vigenere(false, true, true); Vigenere cipher = new Vigenere(false, true, true);
//Test lowercase encoding //Test lowercase encoding