Skip to content

Commit

Permalink
test: add mustCall to test-dgram-implicit-bind.js
Browse files Browse the repository at this point in the history
PR-URL: nodejs#27452
Reviewed-By: Joyee Cheung <[email protected]>
Reviewed-By: Yorkie Liu <[email protected]>
Reviewed-By: Gireesh Punathil <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Yongsheng Zhang <[email protected]>
  • Loading branch information
yuanchenxi95 authored and oyyd committed Apr 29, 2019
1 parent eecf100 commit c3d4933
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-dgram-implicit-bind.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ target.on('message', common.mustCall(function(buf) {
}
}, 2));

target.on('listening', function() {
target.on('listening', common.mustCall(function() {
// Second .send() call should not throw a bind error.
const port = this.address().port;
source.send(Buffer.from('abc'), 0, 3, port, '127.0.0.1');
source.send(Buffer.from('def'), 0, 3, port, '127.0.0.1');
});
}));

target.bind(0);

0 comments on commit c3d4933

Please sign in to comment.