From 6afffaefb77bb2faa55d9c639cba01e654c9eebc Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Mon, 3 Jun 2024 17:47:52 -0700 Subject: [PATCH] test: Update an integration test case --- tests/zip_extended_timestamp.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/zip_extended_timestamp.rs b/tests/zip_extended_timestamp.rs index 983e4fb5..9657028f 100644 --- a/tests/zip_extended_timestamp.rs +++ b/tests/zip_extended_timestamp.rs @@ -12,7 +12,7 @@ fn test_extended_timestamp() { zip::ExtraField::ExtendedTimestamp(ts) => { assert!(ts.ac_time().is_none()); assert!(ts.cr_time().is_none()); - assert_eq!(*ts.mod_time().unwrap(), 1714635025); + assert_eq!(ts.mod_time().unwrap(), 1714635025); } } }