From a84d489134d97589cde77a43bab2aa1a40b404f5 Mon Sep 17 00:00:00 2001 From: Yueh-Hsuan Chiang Date: Tue, 14 Nov 2023 20:40:26 -0800 Subject: [PATCH] Improve formatting in test_hot_storage_get_account_offset_and_address(). --- accounts-db/src/tiered_storage/hot.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts-db/src/tiered_storage/hot.rs b/accounts-db/src/tiered_storage/hot.rs index 0882aa62340871..4a1430fae74457 100644 --- a/accounts-db/src/tiered_storage/hot.rs +++ b/accounts-db/src/tiered_storage/hot.rs @@ -526,8 +526,8 @@ pub mod tests { for (i, index_writer_entry) in index_writer_entries.iter().enumerate() { let account_offset = hot_storage.get_account_offset(IndexOffset(i)).unwrap(); assert_eq!(account_offset.block as u64, index_writer_entry.block_offset); - let account_address = hot_storage.get_account_address(IndexOffset(i)).unwrap(); + let account_address = hot_storage.get_account_address(IndexOffset(i)).unwrap(); assert_eq!(account_address, index_writer_entry.address); } }