We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a55457c commit aa281d2Copy full SHA for aa281d2
test/report/test-report-uv-handles.js
@@ -85,7 +85,7 @@ if (process.argv[2] === 'child') {
85
const report_msg = 'Report files were written: unexpectedly';
86
child.stdout.on('data', (chunk) => { stdout += chunk; });
87
child.on('exit', common.mustCall((code, signal) => {
88
- assert.deepStrictEqual(code, 0, 'Process exited unexpectedly with code' +
+ assert.deepStrictEqual(code, 0, 'Process exited unexpectedly with code: ' +
89
`${code}`);
90
assert.deepStrictEqual(signal, null, 'Process should have exited cleanly,' +
91
` but did not: ${signal}`);
0 commit comments