diff --git a/components/imageproc/src/meta.rs b/components/imageproc/src/meta.rs index f00741cbab..a619e97d28 100644 --- a/components/imageproc/src/meta.rs +++ b/components/imageproc/src/meta.rs @@ -76,14 +76,3 @@ pub fn read_image_metadata>(path: P) -> Result _ => ImageMeta::read(path).map(ImageMetaResponse::from).with_context(err_context), } } - -#[cfg(test)] -mod tests { - use super::*; - - #[test] - fn can_get_webp_metadata() { - let filepath = Path::new("tests/test_imgs/webp.webp"); - assert!(filepath.exists()); - } -}