test(ecstore): match sealed context fixture map type

This commit is contained in:
overtrue
2026-09-05 09:28:46 +08:00
parent 1a2df69632
commit 28cd278b18
@@ -203,7 +203,7 @@ mod tests {
use parking_lot::Mutex;
use std::collections::BTreeMap;
fn encode_context(context: &HashMap<String, String>) -> String {
fn encode_context(context: &BTreeMap<String, String>) -> String {
let ordered = context.iter().collect::<BTreeMap<_, _>>();
serde_json::to_string(&ordered).expect("context serializes")
}