From f021e4f321a9554908ec73f386d9f5cd7990c127 Mon Sep 17 00:00:00 2001 From: Zhengchao An Date: Wed, 8 Jul 2026 05:15:30 +0800 Subject: [PATCH] fix(protocols): simplify swift expiration test types (#4385) --- crates/protocols/src/swift/expiration_worker.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/protocols/src/swift/expiration_worker.rs b/crates/protocols/src/swift/expiration_worker.rs index 70d048e0e..079e5335d 100644 --- a/crates/protocols/src/swift/expiration_worker.rs +++ b/crates/protocols/src/swift/expiration_worker.rs @@ -666,7 +666,7 @@ mod tests { } impl MockExpirationObjectBackend { - fn with_metadata_result(result: SwiftResult>>) -> Self { + fn with_metadata_result(result: MetadataResult) -> Self { Self { metadata_results: Mutex::new(VecDeque::from([result])), ..Default::default()