Skip to content

Commit dc71f8d

Browse files
committed
Fix typo and tests
1 parent cf91ec7 commit dc71f8d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ jobs:
1313
distribution: 'temurin'
1414

1515
- name: Build and run tests
16-
run: mvn tast
16+
run: mvn test
1717

src/main/java/com/testrepo/AppMath.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public int multiply(int a, int b) {
1717
}
1818

1919
public int sumTwice(int a, int b) {
20-
return a - b - b;
20+
return a + b + b;
2121
}
2222

2323
public int subtractTwice(int a, int b) {

0 commit comments

Comments
 (0)