Skip to content

Commit

Permalink
Merge pull request #5 from openstandia/fix-test
Browse files Browse the repository at this point in the history
fix: message
  • Loading branch information
wadahiro authored Sep 30, 2024
2 parents b2cca5a + 52e941c commit 6cd5434
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/jp/openstandia/example/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ public static void main(String[] args) {
}

public String hello() {
return "Hello";
return "Hello!";
}
}
2 changes: 1 addition & 1 deletion src/test/java/jp/openstandia/example/MainTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ public class MainTest {

@Test
public void hello() {
Assertions.assertEquals("Hello", new Main().hello());
Assertions.assertEquals("Hello!", new Main().hello());
}
}

0 comments on commit 6cd5434

Please sign in to comment.