From 27d00055df8691a6bd99aaf38633a7338b16cc6a Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 11 Jul 2026 16:33:05 +0900 Subject: chore: use fully-qualified name for Rc/RefCell --- crates/shirabe/tests/cache_test.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'crates/shirabe/tests/cache_test.rs') diff --git a/crates/shirabe/tests/cache_test.rs b/crates/shirabe/tests/cache_test.rs index b9644dc9..c7c665f8 100644 --- a/crates/shirabe/tests/cache_test.rs +++ b/crates/shirabe/tests/cache_test.rs @@ -4,9 +4,7 @@ use shirabe::cache::{Cache, CacheMock, GcFinderMock}; use shirabe::io::IOInterface; use shirabe::io::null_io::NullIO; use shirabe::util::filesystem::Filesystem; -use std::cell::RefCell; use std::fs; -use std::rc::Rc; use tempfile::TempDir; struct SetUp { @@ -28,7 +26,8 @@ fn set_up() -> SetUp { // PHP mocks Cache::getFinder and keeps the real Filesystem; here the CacheMock finder seam plays // that role and the Cache otherwise operates on the real temp directory. - let io: Rc> = Rc::new(RefCell::new(NullIO::new())); + let io: std::rc::Rc> = + std::rc::Rc::new(std::cell::RefCell::new(NullIO::new())); let cache = Cache::new(io, root.path().to_str().unwrap(), None, None, false); SetUp { root, files, cache } @@ -113,7 +112,8 @@ fn test_remove_files_when_cache_is_too_large() { #[test] fn test_clear_cache() { let root = TempDir::new().unwrap(); - let io: Rc> = Rc::new(RefCell::new(NullIO::new())); + let io: std::rc::Rc> = + std::rc::Rc::new(std::cell::RefCell::new(NullIO::new())); let mut cache = Cache::new( io, root.path().to_str().unwrap(), -- cgit v1.3.1