Skip to content

Commit

Permalink
test: improve assertion message in dgram test
Browse files Browse the repository at this point in the history
PR-URL: #16121
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Joyee Cheung <[email protected]>
  • Loading branch information
shakeelmohamed authored and targos committed Oct 18, 2017
1 parent 6670b35 commit 5f0686a
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 @@ -15,7 +15,7 @@ function onsend() {
if (sent++ < limit) {
client.send(chunk, 0, chunk.length, port, common.localhostIPv4, onsend);
} else {
assert.strictEqual(async, true, 'Send should be asynchronous.');
assert.strictEqual(async, true);
}
}

Expand Down

0 comments on commit 5f0686a

Please sign in to comment.