Skip to content
Snippets Groups Projects
Commit 15970101 authored by jakubs's avatar jakubs
Browse files

SP-452 BIS-297 fix the test

SVN: 28232
parent c4bb87a1
No related branches found
No related tags found
No related merge requests found
......@@ -114,7 +114,16 @@ public class TransformedImageRepresentationsTest extends AbstractScreeningSystem
new Dimension(256, 256), new Dimension(512, 512)));
for (ImageRepresentationFormat format : formats)
{
assertEquals(Integer.valueOf(8), format.getColorDepth());
if (format.getFileType() != null)
{
// jpg thumbnails
assertEquals(Integer.valueOf(32), format.getColorDepth());
} else
{
// original image
assertEquals(Integer.valueOf(8), format.getColorDepth());
}
Dimension resolution = new Dimension(format.getWidth(), format.getHeight());
// Make sure the resolution we specified was found
assertTrue("" + resolution + " was not expected",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment