summaryrefslogtreecommitdiff
path: root/test/report/test-report-uv-handles.js
diff options
context:
space:
mode:
authorgengjiawen <technicalcute@gmail.com>2019-04-30 00:27:20 +0800
committerAnna Henningsen <anna@addaleax.net>2019-05-01 22:36:02 +0200
commitf8cf9f96dd3c910370d493f9dc3eac83a590f4ec (patch)
treebe68cbe3db1247ba6cd13870d0c4b9477bcc18de /test/report/test-report-uv-handles.js
parent97ee1c99e2af5340d6833eb54ccda504d0d22ebf (diff)
downloadandroid-node-v8-f8cf9f96dd3c910370d493f9dc3eac83a590f4ec.tar.gz
android-node-v8-f8cf9f96dd3c910370d493f9dc3eac83a590f4ec.tar.bz2
android-node-v8-f8cf9f96dd3c910370d493f9dc3eac83a590f4ec.zip
test: better output for test-report-uv-handles.js
PR-URL: https://github.com/nodejs/node/pull/27479 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'test/report/test-report-uv-handles.js')
-rw-r--r--test/report/test-report-uv-handles.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/report/test-report-uv-handles.js b/test/report/test-report-uv-handles.js
index 5167716894..2061920432 100644
--- a/test/report/test-report-uv-handles.js
+++ b/test/report/test-report-uv-handles.js
@@ -85,7 +85,7 @@ if (process.argv[2] === 'child') {
const report_msg = 'Report files were written: unexpectedly';
child.stdout.on('data', (chunk) => { stdout += chunk; });
child.on('exit', common.mustCall((code, signal) => {
- assert.deepStrictEqual(code, 0, 'Process exited unexpectedly with code' +
+ assert.deepStrictEqual(code, 0, 'Process exited unexpectedly with code: ' +
`${code}`);
assert.deepStrictEqual(signal, null, 'Process should have exited cleanly,' +
` but did not: ${signal}`);