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]