Skip to content

Commit 94e131d

Browse files
authored
Update CalculatorTest.java
1 parent 83406ac commit 94e131d

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
@@ -17,7 +17,7 @@ public void threeMinusTwoIsOne() throws Exception {
1717
assertThat(result, is(1L));
1818
}
1919

20-
20+
@Test
2121
public void threeXThreeIsNine() throws Exception {
2222
final long result = new Calculator().mulFucn(3, 3);
2323
assertThat(result, is(9L));

0 commit comments

Comments
 (0)