@@ -27,7 +27,7 @@ async fn test_associated_token_address() {
2727 & spl_token_2022:: id ( ) ,
2828 ) ;
2929
30- let ( mut banks_client, payer, recent_blockhash) =
30+ let ( banks_client, payer, recent_blockhash) =
3131 program_test_2022 ( token_mint_address, true ) . start ( ) . await ;
3232 let rent = banks_client. get_rent ( ) . await . unwrap ( ) ;
3333
@@ -78,7 +78,7 @@ async fn test_create_with_fewer_lamports() {
7878 & spl_token_2022:: id ( ) ,
7979 ) ;
8080
81- let ( mut banks_client, payer, recent_blockhash) =
81+ let ( banks_client, payer, recent_blockhash) =
8282 program_test_2022 ( token_mint_address, true ) . start ( ) . await ;
8383 let rent = banks_client. get_rent ( ) . await . unwrap ( ) ;
8484 let expected_token_account_len =
@@ -139,7 +139,7 @@ async fn test_create_with_excess_lamports() {
139139 & spl_token_2022:: id ( ) ,
140140 ) ;
141141
142- let ( mut banks_client, payer, recent_blockhash) =
142+ let ( banks_client, payer, recent_blockhash) =
143143 program_test_2022 ( token_mint_address, true ) . start ( ) . await ;
144144 let rent = banks_client. get_rent ( ) . await . unwrap ( ) ;
145145
@@ -200,7 +200,7 @@ async fn test_create_account_mismatch() {
200200 & spl_token_2022:: id ( ) ,
201201 ) ;
202202
203- let ( mut banks_client, payer, recent_blockhash) =
203+ let ( banks_client, payer, recent_blockhash) =
204204 program_test_2022 ( token_mint_address, true ) . start ( ) . await ;
205205
206206 let mut instruction = create_associated_token_account (
@@ -271,7 +271,7 @@ async fn test_create_associated_token_account_using_legacy_implicit_instruction(
271271 & spl_token_2022:: id ( ) ,
272272 ) ;
273273
274- let ( mut banks_client, payer, recent_blockhash) =
274+ let ( banks_client, payer, recent_blockhash) =
275275 program_test_2022 ( token_mint_address, true ) . start ( ) . await ;
276276 let rent = banks_client. get_rent ( ) . await . unwrap ( ) ;
277277 let expected_token_account_len =
0 commit comments