Skip to content

Commit

Permalink
Fix typo and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Nfsaavedra committed Mar 14, 2024
1 parent cf91ec7 commit dc71f8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ jobs:
distribution: 'temurin'

- name: Build and run tests
run: mvn tast
run: mvn test

2 changes: 1 addition & 1 deletion src/main/java/com/testrepo/AppMath.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public int multiply(int a, int b) {
}

public int sumTwice(int a, int b) {
return a - b - b;
return a + b + b;
}

public int subtractTwice(int a, int b) {
Expand Down

0 comments on commit dc71f8d

Please sign in to comment.