From 6bffe655c5b6db167e0cb50a6cb8c506ae35bad9 Mon Sep 17 00:00:00 2001 From: Alex Aubuchon Date: Mon, 3 Jun 2019 10:04:49 -0700 Subject: [PATCH] fixup! test: move test_[key|ca|cert] to fixtures/keys/ --- doc/api/https.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/https.md b/doc/api/https.md index 009477f37a8eee..9b6ec83a6e7796 100644 --- a/doc/api/https.md +++ b/doc/api/https.md @@ -131,7 +131,7 @@ const https = require('https'); const fs = require('fs'); const options = { - pfx: fs.readFileSync('test/fixtures/keys/rsa_cert.pfx'), + pfx: fs.readFileSync('test/fixtures/test_cert.pfx'), passphrase: 'sample' };