refactor: use deprecated API in tests
This commit is contained in:
parent
d92a06adec
commit
4eba55cb7a
4 changed files with 4 additions and 0 deletions
|
@ -18,6 +18,7 @@ fn real_main() -> i32 {
|
||||||
|
|
||||||
for i in 0..archive.len() {
|
for i in 0..archive.len() {
|
||||||
let mut file = archive.by_index(i).unwrap();
|
let mut file = archive.by_index(i).unwrap();
|
||||||
|
#[allow(deprecated)]
|
||||||
let outpath = file.sanitized_name();
|
let outpath = file.sanitized_name();
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
|
@ -19,6 +19,7 @@ fn real_main() -> i32 {
|
||||||
|
|
||||||
for i in 0..archive.len() {
|
for i in 0..archive.len() {
|
||||||
let file = archive.by_index(i).unwrap();
|
let file = archive.by_index(i).unwrap();
|
||||||
|
#[allow(deprecated)]
|
||||||
let outpath = file.sanitized_name();
|
let outpath = file.sanitized_name();
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
|
@ -195,6 +195,7 @@ fn zip64_large() {
|
||||||
|
|
||||||
for i in 0..archive.len() {
|
for i in 0..archive.len() {
|
||||||
let mut file = archive.by_index(i).unwrap();
|
let mut file = archive.by_index(i).unwrap();
|
||||||
|
#[allow(deprecated)]
|
||||||
let outpath = file.sanitized_name();
|
let outpath = file.sanitized_name();
|
||||||
println!(
|
println!(
|
||||||
"Entry {} has name \"{}\" ({} bytes)",
|
"Entry {} has name \"{}\" ({} bytes)",
|
||||||
|
|
|
@ -70,6 +70,7 @@ fn encrypted_file() {
|
||||||
{
|
{
|
||||||
// Correct password, read contents
|
// Correct password, read contents
|
||||||
let mut file = archive.by_index_decrypt(0, "test".as_bytes()).unwrap();
|
let mut file = archive.by_index_decrypt(0, "test".as_bytes()).unwrap();
|
||||||
|
#[allow(deprecated)]
|
||||||
let file_name = file.sanitized_name();
|
let file_name = file.sanitized_name();
|
||||||
assert_eq!(file_name, std::path::PathBuf::from("test.txt"));
|
assert_eq!(file_name, std::path::PathBuf::from("test.txt"));
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue