Skip to content

Commit

Permalink
fix: fix redundant conversion in assertion in tests.rs
Browse files Browse the repository at this point in the history
Signed-off-by: wizard <[email protected]>
  • Loading branch information
famouswizard authored Jan 30, 2025
1 parent d40fd2d commit e8d688c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transcript/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ const EXAMPLE_OUT: [u8; 32] = [
fn check_sha256_aligned() {
let out = Sha256::digest(EXAMPLE_IN);
println!("{:?}", out);
assert_eq!(out, EXAMPLE_OUT.into());
assert_eq!(out, EXAMPLE_OUT);
}

0 comments on commit e8d688c

Please sign in to comment.