From 107af52debb85ff50dcd33329cd503d37bf071ad Mon Sep 17 00:00:00 2001 From: "Jeff Washington (jwash)" <75863576+jeffwashington@users.noreply.github.com> Date: Wed, 2 Jun 2021 08:35:10 -0500 Subject: [PATCH] minor test code cleanup (#17645) --- runtime/src/accounts_hash.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/runtime/src/accounts_hash.rs b/runtime/src/accounts_hash.rs index 228f735966..52178fd5ce 100644 --- a/runtime/src/accounts_hash.rs +++ b/runtime/src/accounts_hash.rs @@ -845,7 +845,7 @@ pub mod tests { fn test_accountsdb_rest_of_hash_calculation() { solana_logger::setup(); - let mut account_maps: Vec = Vec::new(); + let mut account_maps = Vec::new(); let key = Pubkey::new(&[11u8; 32]); let hash = Hash::new(&[1u8; 32]); @@ -913,7 +913,7 @@ pub mod tests { // 1: NON-empty, empty final // 2: NON-empty, empty, empty final for pass in 0..3 { - let mut account_maps: Vec = Vec::new(); + let mut account_maps = Vec::new(); let key = Pubkey::new(&[11u8; 32]); let hash = Hash::new(&[1u8; 32]); @@ -1000,7 +1000,7 @@ pub mod tests { fn test_accountsdb_multi_pass_rest_of_hash_calculation_partial() { solana_logger::setup(); - let mut account_maps: Vec = Vec::new(); + let mut account_maps = Vec::new(); let key = Pubkey::new(&[11u8; 32]); let hash = Hash::new(&[1u8; 32]); @@ -1074,7 +1074,7 @@ pub mod tests { fn test_accountsdb_multi_pass_rest_of_hash_calculation_partial_hashes() { solana_logger::setup(); - let mut account_maps: Vec = Vec::new(); + let mut account_maps = Vec::new(); const TARGET_FANOUT_LEVEL: usize = 3; let target_fanout = MERKLE_FANOUT.pow(TARGET_FANOUT_LEVEL as u32); @@ -1516,7 +1516,7 @@ pub mod tests { let key = Pubkey::new_unique(); let hash = Hash::new_unique(); - let mut account_maps: Vec = Vec::new(); + let mut account_maps = Vec::new(); let val = CalculateHashIntermediate::new(0, hash, 1, Slot::default(), key); account_maps.push(val.clone());