Skip to content

Commit 278772a

Browse files
Konstantin LikhterFishrock123
Konstantin Likhter
authored andcommitted
test: refactor dgram-send-multi-buffer-copy
assert.equal() -> assert.strictEqual() PR-URL: #9909 Reviewed-By: Colin Ihrig <[email protected]>
1 parent 6d5ded5 commit 278772a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-dgram-send-multi-buffer-copy.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 onMessage = common.mustCall(function(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)