Skip to content

Commit

Permalink
A0-0000: Add debug message to assert. (#1937)
Browse files Browse the repository at this point in the history
Co-authored-by: Michal Swietek <[email protected]>
  • Loading branch information
mike1729 and mike1729 authored Feb 6, 2025
1 parent 3c516e5 commit b503c61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e-tests/src/test/performance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ async fn one_validator_is_dead() -> anyhow::Result<()> {
.await
.unwrap();

assert!(scores.points.into_iter().any(|p| p >= 100));
assert!(scores.points.iter().any(|p| *p >= 100), "Points {:?}", scores.points);

Ok(())
}
Expand Down

0 comments on commit b503c61

Please sign in to comment.