#368 related clean-up

This commit is contained in:
Harald Kuhr
2018-01-17 19:24:31 +01:00
parent 2b29c14593
commit c294c5869c
4 changed files with 49 additions and 59 deletions
@@ -240,9 +240,9 @@ public class EXIFReaderTest extends MetadataReaderAbstractTest {
// The interop IFD isn't there (offset points to outside the TIFF structure)...
// Have double-checked using ExifTool, which says "Warning : Bad InteropOffset SubDirectory start"
Directory interop = (Directory) exif.getEntryById(TIFF.TAG_INTEROP_IFD).getValue();
Object interop = exif.getEntryById(TIFF.TAG_INTEROP_IFD).getValue();
assertNotNull(interop);
assertEquals(0, interop.size());
assertEquals(240L, interop);
}
@Test
@@ -254,9 +254,9 @@ public class TIFFReaderTest extends MetadataReaderAbstractTest {
// The interop IFD isn't there (offset points to outside the TIFF structure)...
// Have double-checked using ExifTool, which says "Warning : Bad InteropOffset SubDirectory start"
Directory interop = (Directory) exif.getEntryById(TIFF.TAG_INTEROP_IFD).getValue();
Object interop = exif.getEntryById(TIFF.TAG_INTEROP_IFD).getValue();
assertNotNull(interop);
assertEquals(0, interop.size());
assertEquals(240L, interop);
}
@Test