fix(): futures request type test

This commit is contained in:
Tiago Siebler
2023-04-04 12:10:00 +01:00
parent f3d837bde6
commit 702728c0dd

View File

@@ -70,7 +70,7 @@ describe('Public Spot REST API Endpoints', () => {
it('getCandles()', async () => {
expect(
await api.getCandles(symbol, '1min', `${from}`, `${to}`),
await api.getCandles(symbol, '1m', `${from}`, `${to}`),
).toMatchObject(expect.any(Array));
});