@@ -68,13 +68,13 @@ async fn test_basic() {
68
68
banks_client. process_transaction ( transaction) . await . unwrap ( ) ;
69
69
70
70
// Confirm feature id account is now funded and allocated, but not assigned
71
- let feature_id_acccount = banks_client
71
+ let feature_id_account = banks_client
72
72
. get_account ( feature_id_address)
73
73
. await
74
74
. expect ( "success" )
75
75
. expect ( "some account" ) ;
76
- assert_eq ! ( feature_id_acccount . owner, system_program:: id( ) ) ;
77
- assert_eq ! ( feature_id_acccount . data. len( ) , Feature :: size_of( ) ) ;
76
+ assert_eq ! ( feature_id_account . owner, system_program:: id( ) ) ;
77
+ assert_eq ! ( feature_id_account . data. len( ) , Feature :: size_of( ) ) ;
78
78
79
79
// Confirm mint account state
80
80
let mint = get_account_data :: < spl_token:: state:: Mint > ( & mut banks_client, mint_address)
@@ -115,12 +115,12 @@ async fn test_basic() {
115
115
banks_client. process_transaction ( transaction) . await . unwrap ( ) ;
116
116
117
117
// Confirm feature id account is not yet assigned
118
- let feature_id_acccount = banks_client
118
+ let feature_id_account = banks_client
119
119
. get_account ( feature_id_address)
120
120
. await
121
121
. expect ( "success" )
122
122
. expect ( "some account" ) ;
123
- assert_eq ! ( feature_id_acccount . owner, system_program:: id( ) ) ;
123
+ assert_eq ! ( feature_id_account . owner, system_program:: id( ) ) ;
124
124
125
125
assert ! ( matches!(
126
126
get_account_data:: <FeatureProposal >( & mut banks_client, feature_proposal. pubkey( ) ) . await ,
@@ -158,12 +158,12 @@ async fn test_basic() {
158
158
banks_client. process_transaction ( transaction) . await . unwrap ( ) ;
159
159
160
160
// Confirm feature id account is now assigned
161
- let feature_id_acccount = banks_client
161
+ let feature_id_account = banks_client
162
162
. get_account ( feature_id_address)
163
163
. await
164
164
. expect ( "success" )
165
165
. expect ( "some account" ) ;
166
- assert_eq ! ( feature_id_acccount . owner, feature:: id( ) ) ;
166
+ assert_eq ! ( feature_id_account . owner, feature:: id( ) ) ;
167
167
168
168
// Confirm feature proposal account state
169
169
assert ! ( matches!(
0 commit comments