aboutsummaryrefslogtreecommitdiff
path: root/test/pummel/test-regress-GH-892.js
diff options
context:
space:
mode:
authorsreepurnajasti <sreepurna.jasti@gmail.com>2018-01-10 15:05:15 +0530
committerJoyee Cheung <joyeec9h3@gmail.com>2018-01-17 08:50:02 +0800
commite08cf1d2309fb4368f11277e7021fa6d63790b9d (patch)
tree228906a7a5cc97cb1a810d8de4e4eefc8531a64e /test/pummel/test-regress-GH-892.js
parentd3600e513ae277534e9a37b51489ec8584fbf3dc (diff)
downloadandroid-node-v8-e08cf1d2309fb4368f11277e7021fa6d63790b9d.tar.gz
android-node-v8-e08cf1d2309fb4368f11277e7021fa6d63790b9d.tar.bz2
android-node-v8-e08cf1d2309fb4368f11277e7021fa6d63790b9d.zip
test: improve to use template string
PR-URL: https://github.com/nodejs/node/pull/18097 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Diffstat (limited to 'test/pummel/test-regress-GH-892.js')
-rw-r--r--test/pummel/test-regress-GH-892.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/pummel/test-regress-GH-892.js b/test/pummel/test-regress-GH-892.js
index 05e27628b1..4021a53736 100644
--- a/test/pummel/test-regress-GH-892.js
+++ b/test/pummel/test-regress-GH-892.js
@@ -102,11 +102,11 @@ const server = https.Server(serverOptions, function(req, res) {
});
server.listen(common.PORT, function() {
- console.log('expecting %d bytes', bytesExpected);
+ console.log(`expecting ${bytesExpected} bytes`);
makeRequest();
});
process.on('exit', function() {
- console.error('got %d bytes', uploadCount);
+ console.error(`got ${uploadCount} bytes`);
assert.strictEqual(uploadCount, bytesExpected);
});