From 4b0d597d4dc1e3908588815b21abfc4ffb759347 Mon Sep 17 00:00:00 2001 From: Zhengchao An Date: Sat, 5 Sep 2026 11:54:24 +0800 Subject: [PATCH] test(ecstore): fix sealed context fixture map type (#7161) test(ecstore): match sealed context fixture map type --- crates/ecstore/src/bucket/sealed_credentials.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ecstore/src/bucket/sealed_credentials.rs b/crates/ecstore/src/bucket/sealed_credentials.rs index 46a0f79fb..a5b264fc0 100644 --- a/crates/ecstore/src/bucket/sealed_credentials.rs +++ b/crates/ecstore/src/bucket/sealed_credentials.rs @@ -203,7 +203,7 @@ mod tests { use parking_lot::Mutex; use std::collections::BTreeMap; - fn encode_context(context: &HashMap) -> String { + fn encode_context(context: &BTreeMap) -> String { let ordered = context.iter().collect::>(); serde_json::to_string(&ordered).expect("context serializes") }