diff --git a/test/unit/io.js b/test/unit/io.js index 5c39ede9..8c4c4d02 100644 --- a/test/unit/io.js +++ b/test/unit/io.js @@ -924,7 +924,8 @@ describe('Input/output', function () { .toColourspace('b-w') // can only squash 1 band uchar images .tiff({ squash: false, - compression: 'none' + compression: 'none', + predictor: 'none' }) .toFile(fixtures.outputTiff, (err, info) => { if (err) throw err; @@ -940,7 +941,8 @@ describe('Input/output', function () { .toColourspace('b-w') // can only squash 1 band uchar images .tiff({ squash: true, - compression: 'none' + compression: 'none', + predictor: 'none' }) .toFile(fixtures.outputTiff, (err, info) => { if (err) throw err;