From e585615ae6e51191d4d4c84ebd790d677497d96b Mon Sep 17 00:00:00 2001 From: ziyun Date: Sun, 16 Jul 2017 15:49:46 +0800 Subject: [PATCH] test: replace string concatenation to template literals --- test/parallel/test-https-unix-socket-self-signed.js | 4 ++-- 1 file 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 df6773f8390675..6653cdd5f8de08 100644 --- a/test/parallel/test-https-unix-socket-self-signed.js +++ b/test/parallel/test-https-unix-socket-self-signed.js @@ -9,8 +9,8 @@ common.refreshTmpDir(); const fs = require('fs'); const https = require('https'); const options = { - cert: fs.readFileSync(common.fixturesDir + '/test_cert.pem'), - key: fs.readFileSync(common.fixturesDir + '/test_key.pem') + cert: fs.readFileSync(`${common.fixturesDir}/test_cert.pem`), + key: fs.readFileSync(`${common.fixturesDir}/test_key.pem`) }; const server = https.createServer(options, common.mustCall((req, res) => {