Blob Blame History Raw
commit 619f8a46b2533de6846b01eccb4bfc6d8198b7b4
Author: Tom Hughes <tom@compton.nu>
Date:   Mon Jul 16 22:28:36 2018 +0100

    Relax error threshold

diff --git a/test/support/assert.js b/test/support/assert.js
index 3914a01..d809d15 100644
--- a/test/support/assert.js
+++ b/test/support/assert.js
@@ -11,7 +11,7 @@ var assert = module.exports = exports = require('assert');
 assert.imageEqualsFile = function(buffer, file, meanError, format, callback) {
     if (typeof meanError == 'function') {
         callback = meanError;
-        meanError = 0.05;
+        meanError = 0.15;
         format = 'png32';
     } else if (typeof format == 'function') {
         callback = format;