summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-0-dns-altname.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-tls-0-dns-altname.js')
-rw-r--r--test/parallel/test-tls-0-dns-altname.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-tls-0-dns-altname.js b/test/parallel/test-tls-0-dns-altname.js
index ab7141c952..7ac40eeda1 100644
--- a/test/parallel/test-tls-0-dns-altname.js
+++ b/test/parallel/test-tls-0-dns-altname.js
@@ -34,8 +34,8 @@ const tls = require('tls');
const fs = require('fs');
const server = tls.createServer({
- key: fs.readFileSync(common.fixturesDir + '/0-dns/0-dns-key.pem'),
- cert: fs.readFileSync(common.fixturesDir + '/0-dns/0-dns-cert.pem')
+ key: fs.readFileSync(`${common.fixturesDir}/0-dns/0-dns-key.pem`),
+ cert: fs.readFileSync(`${common.fixturesDir}/0-dns/0-dns-cert.pem`)
}, function(c) {
c.once('data', function() {
c.destroy();