diff options
Diffstat (limited to 'vendor/zip/tests')
-rw-r--r-- | vendor/zip/tests/end_to_end.rs | 2 | ||||
-rw-r--r-- | vendor/zip/tests/zip64_large.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/vendor/zip/tests/end_to_end.rs b/vendor/zip/tests/end_to_end.rs index 25d0c54d0..09e7ce47e 100644 --- a/vendor/zip/tests/end_to_end.rs +++ b/vendor/zip/tests/end_to_end.rs @@ -13,7 +13,7 @@ fn end_to_end() { for &method in SUPPORTED_COMPRESSION_METHODS { let file = &mut Cursor::new(Vec::new()); - println!("Writing file with {} compression", method); + println!("Writing file with {method} compression"); write_test_archive(file, method).expect("Couldn't write test zip archive"); println!("Checking file contents"); diff --git a/vendor/zip/tests/zip64_large.rs b/vendor/zip/tests/zip64_large.rs index 3d10a3181..468ef198f 100644 --- a/vendor/zip/tests/zip64_large.rs +++ b/vendor/zip/tests/zip64_large.rs @@ -205,7 +205,7 @@ fn zip64_large() { match file.read_exact(&mut buf) { Ok(()) => println!("The first {} bytes are: {:?}", buf.len(), buf), - Err(e) => println!("Could not read the file: {:?}", e), + Err(e) => println!("Could not read the file: {e:?}"), }; } } |