Skip to content

Commit

Permalink
test: fix assert.strictEqual arg order in test-tls-ecdh-multiple.js
Browse files Browse the repository at this point in the history
PR-URL: #23516
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
  • Loading branch information
takdeerkaur authored and addaleax committed Oct 20, 2018
1 parent cdfbb62 commit 7f1e8d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-tls-ecdh-multiple.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ server.listen(0, function() {
});

client.on('exit', function(code) {
assert.strictEqual(0, code);
assert.strictEqual(code, 0);
server.close();
});

Expand Down

0 comments on commit 7f1e8d8

Please sign in to comment.