chore(): relax error code check on UM order test

This commit is contained in:
tiagosiebler
2023-02-13 17:26:02 +00:00
parent 7bdd44b595
commit d6f61a9cbc

View File

@@ -36,7 +36,8 @@ describe('Private Unified Margin REST API POST Endpoints', () => {
timeInForce: 'GoodTillCancel', timeInForce: 'GoodTillCancel',
}) })
).toMatchObject({ ).toMatchObject({
retCode: API_ERROR_CODE.ACCOUNT_NOT_UNIFIED, retCode: expect.any(Number),
// retMsg: '',
}); });
}); });