aboutsummaryrefslogtreecommitdiff
path: root/tests/zip.rs
diff options
context:
space:
mode:
authorIgor Tolmachev <me@igorek.dev>2024-07-12 21:40:08 +0900
committerIgor Tolmachev <me@igorek.dev>2024-07-12 21:40:08 +0900
commitb77106b526930990f51a306fd70cd00856f481e8 (patch)
tree3d4d1b4e08f70ec204fdc986c8e20687044eb90d /tests/zip.rs
parenteb3dd960e3988f43fb74383505801a0b42a1eeea (diff)
downloadarchivator-b77106b526930990f51a306fd70cd00856f481e8.tar.gz
archivator-b77106b526930990f51a306fd70cd00856f481e8.zip
Add zstd compression and fix bugs
Diffstat (limited to 'tests/zip.rs')
-rw-r--r--tests/zip.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/zip.rs b/tests/zip.rs
index 3bce58a..b9291fc 100644
--- a/tests/zip.rs
+++ b/tests/zip.rs
@@ -12,7 +12,7 @@ fn test_zip() {
12 .iter() 12 .iter()
13 .map(|f| &f.name) 13 .map(|f| &f.name)
14 .collect::<Vec<&String>>(), 14 .collect::<Vec<&String>>(),
15 vec!["bzip", "deflate", "lzma", "store", "xz"] 15 vec!["bzip", "deflate", "lzma", "store", "xz", "zstd"]
16 ); 16 );
17 17
18 let mut f = archive.get_file_reader("store").unwrap(); 18 let mut f = archive.get_file_reader("store").unwrap();