summaryrefslogtreecommitdiff
path: root/test/parallel/test-https-unix-socket-self-signed.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-https-unix-socket-self-signed.js')
-rw-r--r--test/parallel/test-https-unix-socket-self-signed.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-https-unix-socket-self-signed.js b/test/parallel/test-https-unix-socket-self-signed.js
index 9db92ac2ae..48207a7a22 100644
--- a/test/parallel/test-https-unix-socket-self-signed.js
+++ b/test/parallel/test-https-unix-socket-self-signed.js
@@ -10,8 +10,8 @@ tmpdir.refresh();
const fixtures = require('../common/fixtures');
const https = require('https');
const options = {
- cert: fixtures.readKey('rsa_cert.crt'),
- key: fixtures.readKey('rsa_private.pem')
+ cert: fixtures.readSync('test_cert.pem'),
+ key: fixtures.readSync('test_key.pem')
};
const server = https.createServer(options, common.mustCall((req, res) => {