Skip to content

Commit 9f91bcd

Browse files
authored
Update assertion in HelloTest to check 'Helloo'
1 parent 3e7a2a2 commit 9f91bcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/junit-image-test/HelloTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ void helloWorldContainsHello() throws IOException, InterruptedException {
3232
Process process = processBuilder.start();
3333
int exitValue = process.waitFor();
3434
assertEquals(0, exitValue);
35-
assertTrue("Hello World!".contains("Hello"));
35+
assertTrue("Hello World!".contains("Helloo"));
3636
}
3737
}

0 commit comments

Comments
 (0)