fix(#240): fix sign error on parallel requests due to pointer mutation
This commit is contained in:
@@ -45,9 +45,10 @@ describe('Private Linear REST API GET Endpoints', () => {
|
||||
});
|
||||
|
||||
it('getActiveOrderList()', async () => {
|
||||
expect(await api.getActiveOrderList({ symbol: symbol })).toMatchObject(
|
||||
successResponseObject()
|
||||
);
|
||||
expect(await api.getActiveOrderList({ symbol: symbol })).toMatchObject({
|
||||
...successResponseObject(),
|
||||
// ret_msg: 'ok',
|
||||
});
|
||||
});
|
||||
|
||||
it('queryActiveOrder()', async () => {
|
||||
|
||||
Reference in New Issue
Block a user