Use b prefix instead of as_bytes()

This commit is contained in:
Benjamin Richner 2020-06-23 21:28:34 +02:00
parent d4100190e5
commit 4737f145ff

View file

@ -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 {