Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
larabr committed Mar 12, 2021
1 parent 56333d6 commit 5c63453
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/general/key.js
Expand Up @@ -3381,7 +3381,7 @@ VYGdb3eNlV8CfoEC
publicKey.users[1].selfCertifications[0].preferredSymmetricAlgorithms = [openpgp.enums.symmetric.aes128];
const sessionKey = await openpgp.generateSessionKey({ publicKeys: publicKey, toUserIds: { name: 'Test User', email: 'b@c.com' } });
expect(sessionKey.algorithm).to.equal('aes128');
const config = { minRsaBits: 1024 }
const config = { minRsaBits: 1024 };
await openpgp.encrypt({
message: openpgp.Message.fromText('hello'), publicKeys: publicKey, privateKeys: privateKey, toUserIds: { name: 'Test User', email: 'b@c.com' }, armor: false, config
});
Expand Down

0 comments on commit 5c63453

Please sign in to comment.