fix: add semicolon

This commit is contained in:
2022-09-12 10:41:49 +07:00
parent 6b029667eb
commit 93d3646bff
2 changed files with 2 additions and 2 deletions

View File

@@ -14,6 +14,6 @@ public class Welcomer{
return "something in the way"; return "something in the way";
} }
public String sayHunter(){ public String sayHunter(){
return "hunter x hunter" return "hunter x hunter";
} }
} }

View File

@@ -32,6 +32,6 @@ public class WelcomerTest {
} }
@Test @Test
public void welcomerSaysHunter(){ public void welcomerSaysHunter(){
assertThat(welcomer.sayHunter(), containsString("hunter")) assertThat(welcomer.sayHunter(), containsString("hunter"));
} }
} }