Browse Source

Test changed to reflect assertion

Peter McCormick 6 years ago
parent
commit
106106f232
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/test/java/HamletParserTest.java

+ 2
- 2
src/test/java/HamletParserTest.java View File

@@ -30,8 +30,8 @@ public class HamletParserTest {
30 30
     public void testChangeHoratioToTariq() {
31 31
 
32 32
         String inputTest = "HORATIO: Horatio Horatios Horatio's";
33
-        String expected = "TARIQ: Tarig Tariqs Tariq's";
34
-
33
+        String expected = "TARIQ: Tariq Tariqs Tariq's";
34
+        Assert.assertEquals(expected, hamletParser.changeHoratioToTariq(inputTest));
35 35
     }
36 36
 
37 37
     @Test