Better assertion failed messages.

(cherry picked from commit 3e9be32279ccc6a8248d407ffebfde32355f5c74)
This commit is contained in:
Harald Kuhr 2018-10-26 22:14:57 +02:00
parent 4740a39cd2
commit 9ac2013965

View File

@ -630,8 +630,8 @@ public class TIFFImageReaderTest extends ImageReaderAbstractTest<TIFFImageReader
assertEquals(160, image.getWidth());
assertEquals(227, image.getHeight());
assertRGBEquals("Wrong RGB", 0xff1E769D, image.getRGB(0, 0), 4);
assertRGBEquals("Wrong RGB", 0xff1E769D, image.getRGB(159, 226), 4);
assertRGBEquals("Wrong RGB (0,0)", 0xff1E769D, image.getRGB(0, 0), 4);
assertRGBEquals("Wrong RGB (159,226)", 0xff1E769D, image.getRGB(159, 226), 4);
}
}