Skip to content

Commit

Permalink
feat(): fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JJ-Cro committed Sep 19, 2024
1 parent d15e502 commit 7546b67
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/CBAdvancedClient/private.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => {
Expand Down
4 changes: 2 additions & 2 deletions test/CBAppClient/private.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => {
Expand Down

0 comments on commit 7546b67

Please sign in to comment.