Skip to content

Commit

Permalink
test: fix strictEqual assertion argument in test-tls-ecdh-auto
Browse files Browse the repository at this point in the history
PR-URL: #23530
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: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
  • Loading branch information
popopome authored and BridgeAR committed Oct 15, 2018
1 parent a24027f commit d51d1ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-tls-ecdh-auto.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 d51d1ad

Please sign in to comment.