From 0b896a9071e42c86db20516c820087ae0ed3dd59 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Thu, 9 May 2024 18:06:23 -0700 Subject: [PATCH] chore: Fix build errors in test write_non_utf8() --- src/write.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/write.rs b/src/write.rs index 55d96578..6fc44c60 100644 --- a/src/write.rs +++ b/src/write.rs @@ -2145,6 +2145,8 @@ mod test { permissions: Some(33188), large_file: false, encrypt_with: None, + extended_options: (), + alignment: 1, }; // GB18030 @@ -2179,7 +2181,7 @@ mod test { path.push("."); path.push("system32"); let path_str = super::path_to_string(&path); - assert_eq!(path_str, "windows/system32"); + assert_eq!(&path_str, "windows/system32"); } #[test]