Increase threshold for OS X gamma test

This commit is contained in:
Lovell Fuller 2016-12-04 19:38:05 +00:00
parent d3c78f825c
commit 850fc9adf9

View File

@ -52,7 +52,7 @@ describe('Gamma correction', function () {
if (err) throw err; if (err) throw err;
assert.strictEqual('png', info.format); assert.strictEqual('png', info.format);
assert.strictEqual(320, info.width); assert.strictEqual(320, info.width);
fixtures.assertSimilar(fixtures.expected('gamma-alpha.jpg'), data, { threshold: 19 }, done); fixtures.assertSimilar(fixtures.expected('gamma-alpha.jpg'), data, { threshold: 20 }, done);
}); });
}); });