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