@@ -27,7 +27,7 @@ async fn test_associated_token_address() {
27
27
& spl_token_2022:: id ( ) ,
28
28
) ;
29
29
30
- let ( mut banks_client, payer, recent_blockhash) =
30
+ let ( banks_client, payer, recent_blockhash) =
31
31
program_test_2022 ( token_mint_address, true ) . start ( ) . await ;
32
32
let rent = banks_client. get_rent ( ) . await . unwrap ( ) ;
33
33
@@ -78,7 +78,7 @@ async fn test_create_with_fewer_lamports() {
78
78
& spl_token_2022:: id ( ) ,
79
79
) ;
80
80
81
- let ( mut banks_client, payer, recent_blockhash) =
81
+ let ( banks_client, payer, recent_blockhash) =
82
82
program_test_2022 ( token_mint_address, true ) . start ( ) . await ;
83
83
let rent = banks_client. get_rent ( ) . await . unwrap ( ) ;
84
84
let expected_token_account_len =
@@ -139,7 +139,7 @@ async fn test_create_with_excess_lamports() {
139
139
& spl_token_2022:: id ( ) ,
140
140
) ;
141
141
142
- let ( mut banks_client, payer, recent_blockhash) =
142
+ let ( banks_client, payer, recent_blockhash) =
143
143
program_test_2022 ( token_mint_address, true ) . start ( ) . await ;
144
144
let rent = banks_client. get_rent ( ) . await . unwrap ( ) ;
145
145
@@ -200,7 +200,7 @@ async fn test_create_account_mismatch() {
200
200
& spl_token_2022:: id ( ) ,
201
201
) ;
202
202
203
- let ( mut banks_client, payer, recent_blockhash) =
203
+ let ( banks_client, payer, recent_blockhash) =
204
204
program_test_2022 ( token_mint_address, true ) . start ( ) . await ;
205
205
206
206
let mut instruction = create_associated_token_account (
@@ -271,7 +271,7 @@ async fn test_create_associated_token_account_using_legacy_implicit_instruction(
271
271
& spl_token_2022:: id ( ) ,
272
272
) ;
273
273
274
- let ( mut banks_client, payer, recent_blockhash) =
274
+ let ( banks_client, payer, recent_blockhash) =
275
275
program_test_2022 ( token_mint_address, true ) . start ( ) . await ;
276
276
let rent = banks_client. get_rent ( ) . await . unwrap ( ) ;
277
277
let expected_token_account_len =
0 commit comments