Skip to content

Commit 708eb9c

Browse files
committed
fix sum
1 parent 4796d48 commit 708eb9c

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
@@ -9,7 +9,7 @@ jobs:
99
- name: Setup Node.js
1010
uses: actions/setup-node@v3
1111
with:
12-
node-version: '16'
12+
node-version: '22.13.1'
1313

1414
- name: Install dependencies
1515
run: npm ci

src/main/js/appMath.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
class AppMath {
22
sum(a, b) {
3-
return a - b;
3+
return a + b;
44
}
55

66
subtract(a, b) {

0 commit comments

Comments
 (0)