From 34c4fec9fe2199304ba008bd495d160bb6527e4a Mon Sep 17 00:00:00 2001 From: Nathan Fiedler Date: Sat, 2 Jan 2016 20:47:38 -0800 Subject: [PATCH] Use canonical tag name for original date --- tests/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib.rs b/tests/lib.rs index c9849e4..0a92abf 100644 --- a/tests/lib.rs +++ b/tests/lib.rs @@ -120,7 +120,7 @@ fn test_get_image_property() { let wand = MagickWand::new(); assert!(wand.read_image("tests/data/IMG_5745.JPG").is_ok()); // retrieve a property we know exists - let found_value = wand.get_image_property("exif:DateTime"); + let found_value = wand.get_image_property("exif:DateTimeOriginal"); assert!(found_value.is_ok()); assert_eq!("2014:04:23 13:33:08", found_value.unwrap()); // retrieve a property that does not exist