From 702728c0ddf2adf271230c1ead229d8d802aff33 Mon Sep 17 00:00:00 2001 From: Tiago Siebler Date: Tue, 4 Apr 2023 12:10:00 +0100 Subject: [PATCH] fix(): futures request type test --- test/futures/public.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/futures/public.test.ts b/test/futures/public.test.ts index 2076fe4..ba1ea96 100644 --- a/test/futures/public.test.ts +++ b/test/futures/public.test.ts @@ -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)); });