@@ -503,7 +503,7 @@ async fn test_manager_one_indexer(
503503
504504 match result {
505505 Ok ( ( ) ) => { }
506- Err ( e) => panic ! ( "Error making receipt request: {:?}" , e ) ,
506+ Err ( e) => panic ! ( "Error making receipt request: {e :?}" ) ,
507507 }
508508 }
509509
@@ -546,7 +546,7 @@ async fn test_manager_two_indexers(
546546 let future_2 = client_2. request ( "request" , ( receipt_2, ) ) ;
547547 match tokio:: try_join!( future_1, future_2) {
548548 Ok ( ( ( ) , ( ) ) ) => { }
549- Err ( e) => panic ! ( "Error making receipt request: {:?}" , e ) ,
549+ Err ( e) => panic ! ( "Error making receipt request: {e :?}" ) ,
550550 }
551551 }
552552 Ok ( ( ) )
@@ -681,7 +681,7 @@ async fn test_tap_manager_rav_timestamp_cuttoff(
681681 let result = client_2. request ( "request" , ( receipt_1, ) ) . await ;
682682 match result {
683683 Ok ( ( ) ) => { }
684- Err ( e) => panic ! ( "Error making receipt request: {:?}" , e ) ,
684+ Err ( e) => panic ! ( "Error making receipt request: {e :?}" ) ,
685685 }
686686 }
687687 Ok ( ( ) )
@@ -708,7 +708,7 @@ async fn test_tap_aggregator_rav_timestamp_cuttoff(
708708 http_max_concurrent_connections,
709709 )
710710 . await ?;
711- let client = HttpClientBuilder :: default ( ) . build ( format ! ( "http://{}" , sender_addr ) ) ?;
711+ let client = HttpClientBuilder :: default ( ) . build ( format ! ( "http://{sender_addr}" ) ) ?;
712712
713713 // This is the first part of the test, two batches of receipts are sent to the aggregator.
714714 // The second batch has one receipt with the same timestamp as the latest receipt in the first batch.
0 commit comments