Skip to content

Commit 6483092

Browse files
committed
fix wrong test return type
1 parent bfdc1d2 commit 6483092

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/modules/listener/tick_listener.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ describe('#tick listener for order', function() {
1919
},
2020
{
2121
getPosition: async () => {
22-
return [];
22+
return undefined;
2323
}
2424
},
2525
{
@@ -68,7 +68,7 @@ describe('#tick listener for order', function() {
6868
},
6969
{
7070
getPosition: async () => {
71-
return [];
71+
return undefined;
7272
}
7373
},
7474
{},

0 commit comments

Comments
 (0)