Skip to content

Commit

Permalink
test: show values instead of assertion message
Browse files Browse the repository at this point in the history
PR-URL: #15979
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
  • Loading branch information
dinophile authored and tniessen committed Oct 28, 2017
1 parent 2e8c04b commit 65b8d21
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/internet/test-dgram-multicast-multi-process.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,7 @@ function launchChildProcess() {
console.error('[PARENT] %d received %d matching messages.',
worker.pid, count);

assert.strictEqual(count, messages.length,
'A worker received an invalid multicast message');
assert.strictEqual(count, messages.length);
});

clearTimeout(timer);
Expand Down

0 comments on commit 65b8d21

Please sign in to comment.