mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
test: remove third argument from call to assert.strictEqual()
Remove the message argument from call to assert.strictEqual so that the AssertionError will report the value of er.code, and add a comment with the message. PR-URL: https://github.com/nodejs/node/pull/19659 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
This commit is contained in:
parent
b06f686f88
commit
14310b5c1f
@ -62,12 +62,13 @@ server.listen(0, function() {
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
// Write to a torn down client should RESET or ABORT
|
||||||
assert.strictEqual(er.code,
|
assert.strictEqual(er.code,
|
||||||
'ECONNRESET',
|
'ECONNRESET');
|
||||||
'Write to a torn down client should RESET or ABORT');
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
assert.strictEqual(req.output.length, 0);
|
assert.strictEqual(req.output.length, 0);
|
||||||
assert.strictEqual(req.outputEncodings.length, 0);
|
assert.strictEqual(req.outputEncodings.length, 0);
|
||||||
server.close();
|
server.close();
|
||||||
|
Loading…
Reference in New Issue
Block a user