update integration test responses

This commit is contained in:
tiagosiebler
2022-08-18 17:20:40 +01:00
parent c5385957c9
commit 28a115a654
2 changed files with 3 additions and 3 deletions

View File

@@ -24,7 +24,7 @@ describe('Private Spot REST API Endpoints', () => {
it('getOrder()', async () => {
// No auth error == test pass
expect(await api.getOrder({ orderId: '123123' })).toMatchObject(
errorResponseObject(null, -2013, 'Order does not exist.')
errorResponseObject({}, -2013, 'Order does not exist.')
);
});