We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16fbd4f commit fb297cbCopy full SHA for fb297cb
test/parallel/test-dgram-send-callback-multi-buffer.js
@@ -7,7 +7,7 @@ const dgram = require('dgram');
7
const client = dgram.createSocket('udp4');
8
9
const messageSent = common.mustCall(function messageSent(err, bytes) {
10
- assert.equal(bytes, buf1.length + buf2.length);
+ assert.strictEqual(bytes, buf1.length + buf2.length);
11
});
12
13
const buf1 = Buffer.alloc(256, 'x');
0 commit comments