test: Update test_path_normalization to match corrected requirements

This commit is contained in:
Chris Hennick 2024-05-06 11:17:21 -07:00
parent c2fe20741c
commit 51ef4f0f30
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -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]