Skip to content
This repository has been archived by the owner on Feb 18, 2021. It is now read-only.

Commit

Permalink
fix file size test
Browse files Browse the repository at this point in the history
  • Loading branch information
dbushell committed Jun 11, 2013
1 parent 03c27ad commit 990806e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/svg2png_test.js
Expand Up @@ -53,7 +53,7 @@ exports.svg2png = {
{ {
fs.stat('test/png/grunt-logo.png', function(err, stats) fs.stat('test/png/grunt-logo.png', function(err, stats)
{ {
test.ok(err === null && stats.size > 44000 && stats.size < 56000, 'PNG "grunt-logo.png" should be ~45kb in size'); test.ok(err === null && stats.size > 44000 && stats.size < 46000, 'PNG "grunt-logo.png" should be ~45kb in size');
test.done(); test.done();
}); });
}, },
Expand Down

0 comments on commit 990806e

Please sign in to comment.