Skip to content

Commit

Permalink
Improve test readibilty
Browse files Browse the repository at this point in the history
  • Loading branch information
MitchTurner committed Oct 21, 2024
1 parent 3e858d9 commit 7270cd0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/fuel-core/src/executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3342,11 +3342,11 @@ mod tests {
.into_changes();

// then
let changes_contains_message = ChangesIterator::<Column>::new(&changes)
let no_messages_in_changes = ChangesIterator::<Column>::new(&changes)
.iter_all::<Messages>(None)
.count()
> 0;
assert!(!changes_contains_message);
== 0;
assert!(no_messages_in_changes);
}

#[test]
Expand Down

0 comments on commit 7270cd0

Please sign in to comment.