Skip to content

Commit

Permalink
test: remove third argument from call to assert.strictEqual()
Browse files Browse the repository at this point in the history
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: #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>
  • Loading branch information
ForrestWeiswolf authored and targos committed Apr 4, 2018
1 parent e1f44a6 commit 46569d6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/parallel/test-http-destroyed-socket-write2.js
Expand Up @@ -62,12 +62,13 @@ server.listen(0, function() {
break;

default:
// Write to a torn down client should RESET or ABORT
assert.strictEqual(er.code,
'ECONNRESET',
'Write to a torn down client should RESET or ABORT');
'ECONNRESET');
break;
}


assert.strictEqual(req.output.length, 0);
assert.strictEqual(req.outputEncodings.length, 0);
server.close();
Expand Down

0 comments on commit 46569d6

Please sign in to comment.