summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-ecdh.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-tls-ecdh.js')
-rw-r--r--test/parallel/test-tls-ecdh.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/parallel/test-tls-ecdh.js b/test/parallel/test-tls-ecdh.js
index 9b8662b075..32e77456bd 100644
--- a/test/parallel/test-tls-ecdh.js
+++ b/test/parallel/test-tls-ecdh.js
@@ -39,8 +39,8 @@ const exec = require('child_process').exec;
const fs = require('fs');
const options = {
- key: fs.readFileSync(common.fixturesDir + '/keys/agent2-key.pem'),
- cert: fs.readFileSync(common.fixturesDir + '/keys/agent2-cert.pem'),
+ key: fs.readFileSync(`${common.fixturesDir}/keys/agent2-key.pem`),
+ cert: fs.readFileSync(`${common.fixturesDir}/keys/agent2-cert.pem`),
ciphers: '-ALL:ECDHE-RSA-AES128-SHA256',
ecdhCurve: 'prime256v1'
};
@@ -52,8 +52,8 @@ const server = tls.createServer(options, common.mustCall(function(conn) {
}));
server.listen(0, '127.0.0.1', common.mustCall(function() {
- let cmd = '"' + common.opensslCli + '" s_client -cipher ' + options.ciphers +
- ` -connect 127.0.0.1:${this.address().port}`;
+ let cmd = `"${common.opensslCli}" s_client -cipher ${
+ options.ciphers} -connect 127.0.0.1:${this.address().port}`;
// for the performance and stability issue in s_client on Windows
if (common.isWindows)