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 <[email protected]>
Reviewed-By: Gireesh Punathil <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Trivikram Kamat <[email protected]>
Reviewed-By: Ruben Bridgewater <[email protected]>
  • Loading branch information
takdeerkaur authored and jasnell committed Oct 17, 2018
1 parent f40399a commit 1eea1aa
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 1eea1aa

Please sign in to comment.