refactor: use deprecated API in tests

This commit is contained in:
Marli Frost 2020-08-19 13:59:48 +01:00
parent d92a06adec
commit 4eba55cb7a
No known key found for this signature in database
GPG key ID: CB0BEA7CF9BD1245
4 changed files with 4 additions and 0 deletions

View file

@ -18,6 +18,7 @@ fn real_main() -> i32 {
for i in 0..archive.len() {
let mut file = archive.by_index(i).unwrap();
#[allow(deprecated)]
let outpath = file.sanitized_name();
{

View file

@ -19,6 +19,7 @@ fn real_main() -> i32 {
for i in 0..archive.len() {
let file = archive.by_index(i).unwrap();
#[allow(deprecated)]
let outpath = file.sanitized_name();
{

View file

@ -195,6 +195,7 @@ fn zip64_large() {
for i in 0..archive.len() {
let mut file = archive.by_index(i).unwrap();
#[allow(deprecated)]
let outpath = file.sanitized_name();
println!(
"Entry {} has name \"{}\" ({} bytes)",

View file

@ -70,6 +70,7 @@ fn encrypted_file() {
{
// Correct password, read contents
let mut file = archive.by_index_decrypt(0, "test".as_bytes()).unwrap();
#[allow(deprecated)]
let file_name = file.sanitized_name();
assert_eq!(file_name, std::path::PathBuf::from("test.txt"));