Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit e237720

Browse filesBrowse files
ziyunFishrock123
authored andcommitted
test: replace string concatenation with template
PR-URL: #14286 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
1 parent 3c92b78 commit e237720
Copy full SHA for e237720

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Open diff view settings
Collapse file

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

Copy file name to clipboardExpand all lines: test/parallel/test-https-unix-socket-self-signed.js
+2-2Lines changed: 2 additions & 2 deletions
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.