From 4737f145ff01f6a6d927543534365ae56762d055 Mon Sep 17 00:00:00 2001 From: Benjamin Richner Date: Tue, 23 Jun 2020 21:28:34 +0200 Subject: [PATCH] Use `b` prefix instead of as_bytes() --- tests/zip_crypto.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/zip_crypto.rs b/tests/zip_crypto.rs index 45e27296..0aa7c64b 100644 --- a/tests/zip_crypto.rs +++ b/tests/zip_crypto.rs @@ -59,7 +59,7 @@ fn encrypted_file() { { // Wrong password - let file = archive.by_index_decrypt(0, "wrong password".as_bytes()); + let file = archive.by_index_decrypt(0, b"wrong password"); assert!(file.is_err()); if let Err(error) = file { match error {