From 7546b67798b3baaf8c091f78843772d2f6585a59 Mon Sep 17 00:00:00 2001 From: Jerko J <83344666+JJ-Cro@users.noreply.github.com> Date: Thu, 19 Sep 2024 12:05:29 +0200 Subject: [PATCH] feat(): fixed tests --- test/CBAdvancedClient/private.test.ts | 4 ++-- test/CBAppClient/private.test.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/CBAdvancedClient/private.test.ts b/test/CBAdvancedClient/private.test.ts index f02211a..718fdd2 100644 --- a/test/CBAdvancedClient/private.test.ts +++ b/test/CBAdvancedClient/private.test.ts @@ -7,8 +7,8 @@ describe('CBAdvancedTradeClient PRIVATE', () => { }; const rest = new CBAdvancedTradeClient({ - apiKeyName: account.key, - apiPrivateKey: account.secret, + apiKey: account.key, + apiSecret: account.secret, }); it('should have credentials to test with', () => { diff --git a/test/CBAppClient/private.test.ts b/test/CBAppClient/private.test.ts index 1cc352c..a331d49 100644 --- a/test/CBAppClient/private.test.ts +++ b/test/CBAppClient/private.test.ts @@ -9,8 +9,8 @@ describe('CBAppClient PRIVATE', () => { }; const rest = new CBAppClient({ - apiKeyName: account.key, - apiPrivateKey: account.secret, + apiKey: account.key, + apiSecret: account.secret, }); it('should have credentials to test with', () => {