We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df8da78 commit 640e400Copy full SHA for 640e400
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 from Spark Web Server!";
+ private static final String MESSAGE = "Hello from Spark Web Server! Branch1";
9
10
public App() {}
11
src/test/java/com/mycompany/app/AppTest.java
@@ -19,6 +19,6 @@ public void testAppConstructor() {
19
public void testAppMessage()
20
{
21
App app = new App();
22
- assertEquals("Hello from Spark Web Server!", app.getMessage());
+ assertEquals("Hello from Spark Web Server! Branch1", app.getMessage());
23
}
24
0 commit comments