This commit is contained in:
Mikhail Kilin
2026-01-31 03:48:50 +03:00
parent 1bf9b3d703
commit 644e36597d
37 changed files with 1070 additions and 600 deletions

View File

@@ -312,7 +312,7 @@ mod tests {
.selected_chat(123)
.build();
assert_eq!(app.selected_chat_id, Some(123));
assert_eq!(app.selected_chat_id, Some(ChatId::new(123)));
}
#[test]
@@ -323,7 +323,7 @@ mod tests {
.build();
assert!(app.is_editing());
assert_eq!(app.chat_state.selected_message_id(), Some(999));
assert_eq!(app.chat_state.selected_message_id(), Some(MessageId::new(999)));
assert_eq!(app.message_input, "Edited text");
}