Skip to content

Commit

Permalink
Fixed the test
Browse files Browse the repository at this point in the history
  • Loading branch information
xgreenx committed Mar 4, 2024
1 parent 6412395 commit 43d21d9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions crates/services/txpool/src/service/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,8 @@ async fn simple_insert_removal_subscription() {
assert_eq!(
update,
TxStatusMessage::Status(TransactionStatus::SqueezedOut {
reason: "Transaction removed.".to_string()
reason: "Transaction squeezed out because Because of the test purposes"
.to_string()
}),
"Second message in tx1 stream should be squeezed out"
);
Expand All @@ -270,7 +271,8 @@ async fn simple_insert_removal_subscription() {
assert_eq!(
update,
TxStatusMessage::Status(TransactionStatus::SqueezedOut {
reason: "Transaction removed.".to_string()
reason: "Transaction squeezed out because Because of the test purposes"
.to_string()
}),
"Second message in tx2 stream should be squeezed out"
);
Expand Down

0 comments on commit 43d21d9

Please sign in to comment.