We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5e8342 commit 9257e7eCopy full SHA for 9257e7e
test/async-hooks/test-writewrap.js
@@ -18,8 +18,8 @@ hooks.enable();
18
//
19
const server = tls
20
.createServer({
21
- cert: fs.readFileSync(common.fixturesDir + '/test_cert.pem'),
22
- key: fs.readFileSync(common.fixturesDir + '/test_key.pem')
+ cert: fs.readFileSync(`${common.fixturesDir}/test_cert.pem`),
+ key: fs.readFileSync(`${common.fixturesDir}/test_key.pem`)
23
})
24
.on('listening', common.mustCall(onlistening))
25
.on('secureConnection', common.mustCall(onsecureConnection))
0 commit comments