From e237720537aa3e82b07aff691f1b78fdb5aa54b9 Mon Sep 17 00:00:00 2001 From: ziyun Date: Sun, 16 Jul 2017 15:49:46 +0800 Subject: [PATCH] test: replace string concatenation with template MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/14286 Reviewed-By: Michaël Zasso Reviewed-By: Rich Trott Reviewed-By: Gibson Fahnestock Reviewed-By: Colin Ihrig Reviewed-By: Benjamin Gruenbaum Reviewed-By: Timothy Gu Reviewed-By: Tobias Nießen Reviewed-By: Gireesh Punathil Reviewed-By: Anna Henningsen --- 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) => {