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 rvagg committed Nov 28, 2018
1 parent c515f27 commit bc537ec
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 bc537ec

Please sign in to comment.