fix tests from refactoring

This commit is contained in:
tiagosiebler
2022-09-10 13:00:38 +01:00
parent 66dcd09f18
commit 9d59d7074a
7 changed files with 50 additions and 57 deletions

View File

@@ -1,5 +1,5 @@
import { API_ERROR_CODE, USDCOptionClient } from '../../../src';
import { successUSDCResponseObject } from '../../response.util';
import { successResponseObjectV3 } from '../../response.util';
describe('Private Account Asset REST API Endpoints', () => {
const useLivenet = true;
@@ -132,7 +132,7 @@ describe('Private Account Asset REST API Endpoints', () => {
it('setMarginMode()', async () => {
expect(await api.setMarginMode('REGULAR_MARGIN')).toMatchObject(
successUSDCResponseObject()
successResponseObjectV3()
);
});