Skip to content

Commit

Permalink
fix assert
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmossas committed Jul 18, 2024
1 parent bb64b23 commit de3d64f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/clients/rust/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -617,8 +617,8 @@ mod tests {
None,
)
.await;
assert!(error_count > 5);
assert!(open_count > 5);
assert_eq!(error_count, 5);
assert_eq!(open_count, 5);
assert!(msg_count == 0);
}

Expand Down

0 comments on commit de3d64f

Please sign in to comment.