Skip to content

Commit 41e5d94

Browse files
mfhanMylesBorins
authored andcommitted
test: refactor test-dgram-send-callback-multi-buffer
* use assert.strictEqual() instead of assert.equal() PR-URL: #9999 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
1 parent 2458501 commit 41e5d94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-dgram-send-callback-multi-buffer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const dgram = require('dgram');
77
const client = dgram.createSocket('udp4');
88

99
const messageSent = common.mustCall(function messageSent(err, bytes) {
10-
assert.equal(bytes, buf1.length + buf2.length);
10+
assert.strictEqual(bytes, buf1.length + buf2.length);
1111
});
1212

1313
const buf1 = Buffer.alloc(256, 'x');

0 commit comments

Comments
 (0)