aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-process-exit-code.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/parallel/test-process-exit-code.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/parallel/test-process-exit-code.js')
-rw-r--r--test/parallel/test-process-exit-code.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-process-exit-code.js b/test/parallel/test-process-exit-code.js
index 55120f6692..f5f8099c8d 100644
--- a/test/parallel/test-process-exit-code.js
+++ b/test/parallel/test-process-exit-code.js
@@ -93,7 +93,7 @@ function parent() {
assert.strictEqual(
code, exit,
`wrong exit for ${arg}\nexpected:${exit} but got:${code}`);
- console.log('ok - %s exited with %d', arg, exit);
+ console.log(`ok - ${arg} exited with ${exit}`);
});
};