summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-handshake-exception.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-tls-handshake-exception.js')
-rw-r--r--test/parallel/test-tls-handshake-exception.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-tls-handshake-exception.js b/test/parallel/test-tls-handshake-exception.js
index 4d8ea7d33a..1ba4bc6438 100644
--- a/test/parallel/test-tls-handshake-exception.js
+++ b/test/parallel/test-tls-handshake-exception.js
@@ -21,8 +21,8 @@ if (process.argv[2] === 'child') {
const { Duplex } = require('stream');
const { mustCall } = common;
- const cert = fixtures.readKey('rsa_cert.crt');
- const key = fixtures.readKey('rsa_private.pem');
+ const cert = fixtures.readSync('test_cert.pem');
+ const key = fixtures.readSync('test_key.pem');
net.createServer(mustCall(onplaintext)).listen(0, mustCall(onlisten));