summaryrefslogtreecommitdiff
path: root/test/parallel/test-async-wrap-check-providers.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-async-wrap-check-providers.js')
-rw-r--r--test/parallel/test-async-wrap-check-providers.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-async-wrap-check-providers.js b/test/parallel/test-async-wrap-check-providers.js
index 2800dbb16c..ed30fa257b 100644
--- a/test/parallel/test-async-wrap-check-providers.js
+++ b/test/parallel/test-async-wrap-check-providers.js
@@ -94,8 +94,8 @@ process.on('SIGINT', () => process.exit());
// Run from closed net server above.
function checkTLS() {
const options = {
- key: fs.readFileSync(common.fixturesDir + '/keys/ec-key.pem'),
- cert: fs.readFileSync(common.fixturesDir + '/keys/ec-cert.pem')
+ key: fs.readFileSync(`${common.fixturesDir}/keys/ec-key.pem`),
+ cert: fs.readFileSync(`${common.fixturesDir}/keys/ec-cert.pem`)
};
const server = tls.createServer(options, common.noop)
.listen(0, function() {