Skip to content

Commit

Permalink
chore: include typename in assert (#13595)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Dec 30, 2024
1 parent 343bee5 commit c2a5728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/cli/commands/src/test_vectors/compact.rs
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ where

let (reconstructed, _) = T::from_compact(&compact_bytes, len_or_identifier);
reconstructed.to_compact(&mut buffer);
assert_eq!(buffer, compact_bytes);
assert_eq!(buffer, compact_bytes, "mismatch {}", type_name);
}

println!(" ✅");
Expand Down

0 comments on commit c2a5728

Please sign in to comment.