Skip to content

Commit

Permalink
test: improve asset msg in test
Browse files Browse the repository at this point in the history
Add result to part of assert message.

PR-URL: #15918
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
  • Loading branch information
genewoo authored and MylesBorins committed Oct 11, 2017
1 parent f201edc commit c5c51eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-zlib-from-gzip-with-trailing-garbage.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ zlib.gunzip(data, common.mustCall((err, result) => {
assert.strictEqual(
result.toString(),
'abcdef',
'result should match original string'
`result '${result.toString()}' should match original string`
);
}));

Expand Down

0 comments on commit c5c51eb

Please sign in to comment.