Skip to content

Commit

Permalink
test: changed assert.Equal to asset.strictEqual
Browse files Browse the repository at this point in the history
test-dgram-send-callback-recursive.js

PR-URL: #9973
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
  • Loading branch information
pchinjr authored and MylesBorins committed Dec 21, 2016
1 parent 29cd690 commit 97bb0c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-dgram-send-callback-recursive.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ client.on('message', function(buf, info) {
});

client.on('close', common.mustCall(function() {
assert.equal(received, limit);
assert.strictEqual(received, limit);
}));

client.bind(0);

0 comments on commit 97bb0c1

Please sign in to comment.