Skip to content

Commit 6d0a23c

Browse files
committed
fix: minor
1 parent 6f0eac8 commit 6d0a23c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/catalyst-types/src/hashes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ mod tests {
198198

199199
#[test]
200200
fn test_blake2b_hash_invalid_length() {
201-
let invalid_data = vec![0u8; 10]; // Shorter than required length
201+
let invalid_data = vec![0u8; 10];
202202
let result = Blake2b224Hash::try_from(&invalid_data);
203203
assert!(result.is_err());
204204

0 commit comments

Comments
 (0)