Use b
prefix instead of as_bytes()
This commit is contained in:
parent
d4100190e5
commit
4737f145ff
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue