Skip to content

Commit 82a82c3

Browse files
ughitsaaronMylesBorins
authored andcommitted
test: Use strictEqual in test-tls-writewrap-leak
PR-URL: #9666 Reviewed-By: Myles Borins <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Sakthipriyan Vairamani <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent c63f3af commit 82a82c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-tls-writewrap-leak.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const server = net.createServer(common.mustCall((c) => {
2020
});
2121

2222
c.write('hello', common.mustCall((err) => {
23-
assert.equal(err.code, 'ECANCELED');
23+
assert.strictEqual(err.code, 'ECANCELED');
2424
server.close();
2525
}));
2626
}));

0 commit comments

Comments
 (0)