We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b70a64 commit f7ec6e7Copy full SHA for f7ec6e7
2 files changed
src/main/java/com/mycompany/app/App.java
@@ -5,7 +5,7 @@
5
*/
6
public class App {
7
8
- private static final String MESSAGE = "Hello World from Github Actions 2!";
+ private static final String MESSAGE = "Hello World from Github Actions 3!";
9
10
public App() {}
11
src/test/java/com/mycompany/app/AppTest.java
@@ -20,6 +20,6 @@ public void testAppConstructor() {
20
public void testAppMessage()
21
{
22
App app = new App();
23
- assertEquals("Hello World from Github Actions 2!", app.getMessage());
+ assertEquals("Hello World from Github Actions 3!", app.getMessage());
24
}
25
0 commit comments