Skip to content

Commit

Permalink
Fix clippy warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
surban committed Apr 2, 2024
1 parent 048ec6b commit 7f6c561
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion remoc/tests/rch/watch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ async fn max_item_size_exceeded() {
// Test error clearing.
assert!(matches!(tx.error(), Some(SendError::RemoteSend(SendErrorKind::MaxItemSizeExceeded))));
tx.clear_error();
assert!(matches!(tx.error(), None));
assert!(tx.error().is_none());
tx.check().unwrap();
}

Expand Down

0 comments on commit 7f6c561

Please sign in to comment.