Skip to content

Commit

Permalink
fmt fuzz
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-o-how committed Feb 10, 2025
1 parent f2571b3 commit 494f536
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz/fuzz_targets/deserialize_br.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ fuzz_target!(|data: &[u8]| {
let node_count = allocator.node_count();
let res2 = node_from_bytes_backrefs_old(&mut allocator, data);
// check that the new implementation creates the same number of nodes as the old one
assert_eq!(node_count * 2, allocator.node_count());
assert_eq!(node_count * 2, allocator.node_count());
match (res1, res2) {
(Err(e1), Err(e2)) => {
assert_eq!(e1, e2);
Expand Down

0 comments on commit 494f536

Please sign in to comment.