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 53cdac9 commit eac2076Copy full SHA for eac2076
crates/matrix-sdk-crypto/src/olm/session.rs
@@ -350,6 +350,9 @@ mod tests {
350
351
// Also ensure that the encrypted payload has the device keys.
352
let plaintext: Value = serde_json::from_str(&bob_session_result.plaintext).unwrap();
353
- assert_eq!(plaintext["device_keys"]["user_id"].as_str(), Some("@alice:localhost"));
+ assert_eq!(
354
+ plaintext["org.matrix.msc4147.device_keys"]["user_id"].as_str(),
355
+ Some("@alice:localhost")
356
+ );
357
}
358
0 commit comments