Skip to content

Commit

Permalink
Update test/unit/common/CryptoUtils.test.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Kevin Hawkins <[email protected]>
  • Loading branch information
sfdctaka and khawkins authored Jun 13, 2024
1 parent 253b7b1 commit fa07732
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/common/CryptoUtils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ describe('CryptoUtils tests', () => {
expect(cert.pemPrivateKey.startsWith('-----BEGIN RSA PRIVATE KEY-----')).to.be.true;
}).timeout(10000); // increase timeout for this test

it('generateIdentityToken succeeds to generate tokenss with correct size', async () => {
it('generateIdentityToken succeeds to generate tokens with correct size', async () => {
let token = CryptoUtils.generateIdentityToken();
let b64string = Buffer.from(token, 'base64');
let byteSize = b64string.byteLength;
Expand Down

0 comments on commit fa07732

Please sign in to comment.