-
Notifications
You must be signed in to change notification settings - Fork 261
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(base): New RoomInfoNotableUpdateReasons::READ_RECEIPT
#3680
Changes from 1 commit
657b046
efd9a75
168f285
b046794
a4e47fd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1866,7 +1866,8 @@ mod tests { | |
let response = response_with_room(room_id, room); | ||
client.process_sliding_sync(&response, &()).await.expect("Failed to process sync"); | ||
|
||
// Then a room info notable update is NOT received, because it's the first time the room is seen. | ||
// Then a room info notable update is NOT received, because it's the first time | ||
// the room is seen. | ||
assert_matches!( | ||
room_info_notable_update_stream.recv().await, | ||
Ok(RoomInfoNotableUpdate { room_id: received_room_id, reasons: received_reasons }) => { | ||
|
@@ -1913,7 +1914,8 @@ mod tests { | |
} | ||
); | ||
|
||
// When I send sliding sync response containing a couple of events with no read receipt. | ||
// When I send sliding sync response containing a couple of events with no read | ||
// receipt. | ||
let room_id = room_id!("!r:e.uk"); | ||
let events = vec![ | ||
make_raw_event("m.room.message", "$3"), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This entire test suite should be revisited. Later. For another time. But I agree! |
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please fold 0e73620 into the commits it belongs to (consider git-absorb next time!)