Skip to content

Commit

Permalink
Fix test assert message
Browse files Browse the repository at this point in the history
  • Loading branch information
krtab committed Oct 6, 2020
1 parent 6b56e47 commit 1fe42c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ mod tests {
.iter()
.map(|slot| usize::from(slot.get() as u8))
.sum();
assert_eq!(leak_count, 0, "No elements leaked");
assert_eq!(leak_count, 0, "{} elements leaked", leak_count);
}
}
}
Expand Down

0 comments on commit 1fe42c7

Please sign in to comment.