From 51ef4f0f30470f803af4def79aee2abeb154f08a Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Mon, 6 May 2024 11:17:21 -0700 Subject: [PATCH] test: Update test_path_normalization to match corrected requirements --- src/write.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/write.rs b/src/write.rs index 4a26d9a4..d2c9863f 100644 --- a/src/write.rs +++ b/src/write.rs @@ -1902,7 +1902,7 @@ mod test { .start_file_from_path(path, SimpleFileOptions::default()) .unwrap(); let archive = ZipArchive::new(writer.finish().unwrap()).unwrap(); - assert_eq!(Some("/foo/example.txt"), archive.name_for_index(0)); + assert_eq!(Some("foo/example.txt"), archive.name_for_index(0)); } #[test]