mirror of
https://github.com/Dannecron/netology-devops-teamcity-example.git
synced 2025-12-25 15:22:35 +03:00
fix: add semicolon
This commit is contained in:
@@ -14,6 +14,6 @@ public class Welcomer{
|
||||
return "something in the way";
|
||||
}
|
||||
public String sayHunter(){
|
||||
return "hunter x hunter"
|
||||
return "hunter x hunter";
|
||||
}
|
||||
}
|
||||
|
||||
@@ -32,6 +32,6 @@ public class WelcomerTest {
|
||||
}
|
||||
@Test
|
||||
public void welcomerSaysHunter(){
|
||||
assertThat(welcomer.sayHunter(), containsString("hunter"))
|
||||
assertThat(welcomer.sayHunter(), containsString("hunter"));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user