test: Fix a bug

This commit is contained in:
Chris Hennick 2024-06-14 00:00:37 -07:00
parent 348611f62b
commit e555f8c770
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -128,7 +128,7 @@ fn write_test_archive(file: &mut Cursor<Vec<u8>>, method: CompressionMethod, sha
zip.start_file("test/☃.txt", options.clone()).unwrap();
zip.write_all(b"Hello, World!\n").unwrap();
options.add_extra_data(0xbeef, EXTRA_DATA, false).unwrap();
options.add_extra_data(0xbeef, EXTRA_DATA.to_owned().into_boxed_slice(), false).unwrap();
zip.start_file("test_with_extra_data/🐢.txt", options)
.unwrap();