Use string literal to format unreachable message in test (#3483)

* Use string literal to format unreachable message

* Try removing the redundant format

Co-authored-by: teor <teor@riseup.net>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
This commit is contained in:
Deirdre Connolly 2022-02-08 03:34:39 -05:00 committed by GitHub
parent 3644171738
commit 2f33300c08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -70,10 +70,10 @@ async fn mempool_requests_for_transactions() {
.await; .await;
match response { match response {
Ok(Response::TransactionIds(response)) => assert_eq!(response, added_transaction_ids), Ok(Response::TransactionIds(response)) => assert_eq!(response, added_transaction_ids),
_ => unreachable!(format!( _ => unreachable!(
"`MempoolTransactionIds` requests should always respond `Ok(Vec<UnminedTxId>)`, got {:?}", "`MempoolTransactionIds` requests should always respond `Ok(Vec<UnminedTxId>)`, got {:?}",
response response
)), ),
}; };
// Test `Request::TransactionsById` // Test `Request::TransactionsById`