Merge branch '91_canvas_merge_test' into 91_canvas_paint_operations_optimization
diff --git a/test/index.js b/test/index.js
index 3c2263e..2b3d710 100644
--- a/test/index.js
+++ b/test/index.js
@@ -226,7 +226,6 @@
     const img2 = PNG.sync.read(fs.readFileSync(comparePath));
     const {width, height} = img1;
     const diff = new PNG({width, height});
-
     const result = pixelmatch(img1.data, img2.data, diff.data, width, height, {threshold: 0.1});
     // Using 50 as threshold because it should be an acceptable difference
     // that doesn't raise false positives