test: fix strictEqual assertion argument in test-tls-ecdh-auto

PR-URL: https://github.com/nodejs/node/pull/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>
This commit is contained in:
jaxyz 2018-10-12 10:33:15 -07:00 committed by Ruben Bridgewater
parent a24027f9ee
commit d51d1ad4c8
No known key found for this signature in database
GPG Key ID: F07496B3EB3C1762

View File

@ -48,7 +48,7 @@ server.listen(0, function() {
});
client.on('exit', function(code) {
assert.strictEqual(0, code);
assert.strictEqual(code, 0);
server.close();
});