Skip to content

Commit

Permalink
Fix timeline integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
aringenbach committed Jun 27, 2023
1 parent d0a1a3e commit d8d2b07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/matrix-sdk-ui/tests/integration/timeline/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ async fn reaction() {
assert_eq!(event_item.reactions().len(), 1);
let group = &event_item.reactions()["👍"];
assert_eq!(group.len(), 1);
let senders: Vec<_> = group.senders().collect();
let senders: Vec<_> = group.senders().map(|v| &v.id).collect();
assert_eq!(senders.as_slice(), [user_id!("@bob:example.org")]);

// TODO: After adding raw timeline items, check for one here
Expand Down

0 comments on commit d8d2b07

Please sign in to comment.