Skip to content

Commit a82481e

Browse files
committed
Update for_each_pair.test.ts
1 parent 39aff98 commit a82481e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/array/for_each_pair.test.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@ Deno.test(
1515
function dummyFunction(
1616
previousValue : number,
1717
currentValue : number
18-
) : void {}
18+
) : {
19+
previousValue : number,
20+
currentValue : number
21+
} { return {
22+
previousValue, currentValue
23+
}}
1924

2025
const dummyFunctionSpy = spy(dummyFunction);
2126

0 commit comments

Comments
 (0)