Skip to content

Commit

Permalink
test: Use strictEqual in test-tls-writewrap-leak
Browse files Browse the repository at this point in the history
PR-URL: #9666
Reviewed-By: Myles Borins <myles.borins@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
  • Loading branch information
ughitsaaron authored and targos committed Nov 19, 2016
1 parent 6df167c commit f133c16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-tls-writewrap-leak.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const server = net.createServer(common.mustCall((c) => {
});

c.write('hello', common.mustCall((err) => {
assert.equal(err.code, 'ECANCELED');
assert.strictEqual(err.code, 'ECANCELED');
server.close();
}));
}));

0 comments on commit f133c16

Please sign in to comment.