From 54e127a3a63cdbb54308c5fa6fbabe5e1dde756b Mon Sep 17 00:00:00 2001 From: overtrue Date: Sat, 5 Sep 2026 09:28:46 +0800 Subject: [PATCH] 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") }