File tree Expand file tree Collapse file tree
src/test/java/org/apache/commons/imaging/formats/webp Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717package org .apache .commons .imaging .formats .webp ;
1818
1919import static org .junit .jupiter .api .Assertions .assertEquals ;
20+ import static org .junit .jupiter .api .Assertions .assertFalse ;
2021import static org .junit .jupiter .api .Assertions .assertNotNull ;
2122import static org .junit .jupiter .api .Assertions .assertThrows ;
2223import static org .junit .jupiter .api .Assertions .assertTrue ;
3132import org .apache .commons .imaging .common .ImageMetadata ;
3233import org .apache .commons .imaging .formats .webp .chunks .WebPChunkIccp ;
3334import org .apache .commons .imaging .internal .Debug ;
34- import org .junit .jupiter .api .Assertions ;
3535import org .junit .jupiter .api .Test ;
3636import org .junit .jupiter .params .ParameterizedTest ;
3737import org .junit .jupiter .params .provider .MethodSource ;
@@ -77,7 +77,7 @@ void testRead(final File imageFile) throws Exception {
7777 Debug .debug ("imageFile" , imageFile );
7878
7979 final ImageMetadata metadata = Imaging .getMetadata (imageFile );
80- Assertions . assertFalse (metadata instanceof File ); // Dummy check to avoid unused warning (it may be null)
80+ assertFalse (metadata instanceof File ); // Dummy check to avoid unused warning (it may be null)
8181
8282 final ImageInfo imageInfo = Imaging .getImageInfo (imageFile );
8383 assertNotNull (imageInfo );
You can’t perform that action at this time.
0 commit comments