From d1acfd7fb780e4ad722ad5021e305c2968d3144f Mon Sep 17 00:00:00 2001 From: zerod0t Date: Thu, 13 Feb 2025 10:07:49 +0300 Subject: [PATCH] errors2 --- .../src/file_location_cache.rs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/node/file_location_cache/src/file_location_cache.rs b/node/file_location_cache/src/file_location_cache.rs index cd2e560..424f27f 100644 --- a/node/file_location_cache/src/file_location_cache.rs +++ b/node/file_location_cache/src/file_location_cache.rs @@ -382,7 +382,7 @@ mod tests { } #[test] - fn test_annoucement_cache_pop_len() { + fn test_announcement_cache_pop_len() { let mut cache = AnnouncementCache::new(100, 3600); let now = timestamp_now(); @@ -404,7 +404,7 @@ mod tests { } #[test] - fn test_annoucement_cache_garbage_collect() { + fn test_announcement_cache_garbage_collect() { let mut cache = AnnouncementCache::new(100, 3600); let now = timestamp_now(); @@ -422,7 +422,7 @@ mod tests { } #[test] - fn test_annoucement_cache_insert_gc() { + fn test_announcement_cache_insert_gc() { let mut cache = AnnouncementCache::new(100, 3600); let now = timestamp_now(); @@ -438,7 +438,7 @@ mod tests { } #[test] - fn test_annoucement_cache_insert_ignore_older() { + fn test_announcement_cache_insert_ignore_older() { let mut cache = AnnouncementCache::new(100, 3600); let now = timestamp_now(); @@ -461,7 +461,7 @@ mod tests { } #[test] - fn test_annoucement_cache_insert_overwrite() { + fn test_announcement_cache_insert_overwrite() { let mut cache = AnnouncementCache::new(100, 3600); let now = timestamp_now(); @@ -479,7 +479,7 @@ mod tests { } #[test] - fn test_annoucement_cache_insert_cap_exceeded() { + fn test_announcement_cache_insert_cap_exceeded() { let mut cache = AnnouncementCache::new(3, 3600); let now = timestamp_now(); @@ -499,7 +499,7 @@ mod tests { } #[test] - fn test_annoucement_cache_random() { + fn test_announcement_cache_random() { let mut cache = AnnouncementCache::new(100, 3600); let now = timestamp_now(); @@ -515,7 +515,7 @@ mod tests { } #[test] - fn test_annoucement_cache_all() { + fn test_announcement_cache_all() { let mut cache = AnnouncementCache::new(100, 3600); let now = timestamp_now();