We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d5ded5 commit 278772aCopy full SHA for 278772a
test/parallel/test-dgram-send-multi-buffer-copy.js
@@ -7,7 +7,7 @@ const dgram = require('dgram');
7
const client = dgram.createSocket('udp4');
8
9
const onMessage = common.mustCall(function(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