Skip to content

Commit 11ed4c2

Browse files
ziyunMylesBorins
ziyun
authored andcommitted
test: replace string concatenation with template
PR-URL: #14286 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Timothy Gu <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
1 parent 013155d commit 11ed4c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/parallel/test-https-unix-socket-self-signed.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ common.refreshTmpDir();
99
const fs = require('fs');
1010
const https = require('https');
1111
const options = {
12-
cert: fs.readFileSync(common.fixturesDir + '/test_cert.pem'),
13-
key: fs.readFileSync(common.fixturesDir + '/test_key.pem')
12+
cert: fs.readFileSync(`${common.fixturesDir}/test_cert.pem`),
13+
key: fs.readFileSync(`${common.fixturesDir}/test_key.pem`)
1414
};
1515

1616
const server = https.createServer(options, common.mustCall((req, res) => {

0 commit comments

Comments
 (0)