We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd0e829 commit 1aefa29Copy full SHA for 1aefa29
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 for USFQ!";
+ private static final String MESSAGE = "Hello World!";
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 for USFQ!", app.getMessage());
+ assertEquals("Hello World!", app.getMessage());
24
}
25
0 commit comments