summaryrefslogtreecommitdiff
path: root/test/pummel/test-tls-throttle.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/pummel/test-tls-throttle.js')
-rw-r--r--test/pummel/test-tls-throttle.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/pummel/test-tls-throttle.js b/test/pummel/test-tls-throttle.js
index 55dcdd258a..a9e2442ef2 100644
--- a/test/pummel/test-tls-throttle.js
+++ b/test/pummel/test-tls-throttle.js
@@ -38,8 +38,8 @@ const body = 'hello world\n'.repeat(1024 * 1024);
process.stdout.write('done\n');
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`)
};
const server = tls.Server(options, common.mustCall(function(socket) {