From 78be15b50b27615ce32430a017aac0163ed297cf Mon Sep 17 00:00:00 2001 From: Sebastian Imlay Date: Sun, 21 Aug 2022 11:55:15 -0400 Subject: [PATCH] Added comment for why image::from_path isnt tested --- src/image/image.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/image/image.rs b/src/image/image.rs index b8c1918..6ca6998 100644 --- a/src/image/image.rs +++ b/src/image/image.rs @@ -291,6 +291,7 @@ fn test_image_from_bytes() { let image_bytes = include_bytes!("../../test-data/favicon.ico"); let image = Image::with_data(image_bytes); } +// It's unclear where the file is on the ios simulator. #[test] #[cfg(target_os = "macos")] fn test_image_from_file() {