From 059e375afad6702f14a5e5a421fd5ad5a1c398d6 Mon Sep 17 00:00:00 2001 From: Aleksandar Stojiljkovic Date: Fri, 31 May 2019 07:32:00 +0300 Subject: [PATCH] Tweak tolerance in render tests to expose false passing test fill-extrusion-vertical-gradient/default was [falsely passing - Issue #14784](https://github.com/mapbox/mapbox-gl-native/issues/14784). This tweak makes the test fail while keeping other tests passing. --- test/integration/lib/render.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/lib/render.js b/test/integration/lib/render.js index 77117fd4707..345073443f7 100644 --- a/test/integration/lib/render.js +++ b/test/integration/lib/render.js @@ -135,7 +135,7 @@ export function run(implementation, ignores, render) { const diff = pixelmatch( actualImg.data, expectedImg.data, diffImg.data, - width, height, {threshold: 0.13}) / (width * height); + width, height, {threshold: 0.1285}) / (width * height); if (diff < minDiff) { minDiff = diff;