Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/test/java/dev/ikm/examples/HelloTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,15 @@ public void testFail2() {
@Test
public void testFail3() {

String helloText = "Hello mkyong";
String helloText = "Should fail";

assertEquals("Hello mkyong", helloText);
assertEquals("Should fail", helloText);

Hello hello = new Hello();

int z = hello.multiply(3, 4);
int z = hello.multiply(4, 4);

assertEquals(z, 12);
assertEquals(z, 16);

}

Expand Down