Skip to content

Commit 42e553b

Browse files
authored
Update CalculatorTest.java
1 parent e42896c commit 42e553b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/mypackage/CalculatorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public void threeMinusTwoIsOne() throws Exception {
2020
@Test
2121
public void threeXThreeIsNine() throws Exception {
2222
final long result = new Calculator().mulFucn(3, 3);
23-
assertThat(result, is(1L));
23+
assertThat(result, is(9L));
2424
}
2525

2626
}

0 commit comments

Comments
 (0)