We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0460c87 commit e4fe8fbCopy full SHA for e4fe8fb
rust-runtime/aws-smithy-protocol-test/src/lib.rs
@@ -434,7 +434,8 @@ fn cbor_values_equal(
434
})?
435
}
436
437
- // Convert `ciborium::Map` to sorted `BTreeMap` and then compare the sorted maps.
+ // Convert `ciborium::Value::Map` to a `HashMap`, and then compare the values of
438
+ // each key in `a` with those in `b`.
439
(ciborium::Value::Map(a_map), ciborium::Value::Map(b_map)) => {
440
let a_hashmap = ciborium_map_to_hashmap(a_map)?;
441
let b_hashmap = ciborium_map_to_hashmap(b_map)?;
0 commit comments