Skip to content

Commit

Permalink
Merge pull request #28 from tiagosiebler/jerko
Browse files Browse the repository at this point in the history
feat(): fixed tests
  • Loading branch information
JJ-Cro authored Sep 19, 2024
2 parents d15e502 + 7546b67 commit d5a1c00
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 d5a1c00

Please sign in to comment.