Skip to content

Commit

Permalink
fixup! feat(room_preview): Compute display name
Browse files Browse the repository at this point in the history
  • Loading branch information
jmartinesp committed Nov 19, 2024
1 parent d45ec1b commit 27f4989
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1094,7 +1094,7 @@ async fn test_room_preview() -> Result<()> {
let preview = alice.get_room_preview(room_id.into(), Vec::new()).await?;
assert_room_preview(&preview, &room_alias);
assert_eq!(preview.state, Some(RoomState::Joined));
assert!(preview.heroes.is_none());
assert!(preview.heroes.is_some());
}

Ok(())
Expand Down

0 comments on commit 27f4989

Please sign in to comment.