Skip to content

Commit

Permalink
test: use assert_eq (#7065)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Feb 9, 2024
1 parent 6be2e77 commit 282b0c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/forge/tests/it/invariant.rs
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ async fn test_invariant_shrink() {
CounterExample::Single(_) => panic!("CounterExample should be a sequence."),
// `fuzz_seed` at 119 makes this sequence shrinkable from 4 to 2.
CounterExample::Sequence(sequence) => {
assert!(sequence.len() == 2)
assert_eq!(sequence.len(), 2);
}
};
}

0 comments on commit 282b0c3

Please sign in to comment.