Skip to content

Commit

Permalink
Fix PFX test
Browse files Browse the repository at this point in the history
  • Loading branch information
szmarczak committed Nov 3, 2021
1 parent 090b2c5 commit 3ad8550
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/https.ts
Expand Up @@ -440,7 +440,9 @@ test('client certificate PFX', withHttpsServer(), async (t, server, got) => {
const clientKey = clientResult.clientKey;
const clientCert = clientResult.certificate;

const {pkcs12} = await createPkcs12(clientKey, clientCert, 'randomPassword');
const {pkcs12} = await createPkcs12(clientKey, clientCert, 'randomPassword', {
ciphers: 'RC4',
});

const response = await got({
https: {
Expand Down

0 comments on commit 3ad8550

Please sign in to comment.