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 dd02274 commit ca99977Copy full SHA for ca99977
crates/matrix-sdk-ui/tests/integration/timeline/pagination.rs
@@ -199,8 +199,8 @@ async fn test_skip_count_is_taken_into_account_in_pagination_status() {
199
let mut events = Vec::new();
200
for i in 0..30 {
201
events.push(
202
- f.text_msg(format!("hello world {}", i))
203
- .event_id(&EventId::parse(format!("$ev{}", i)).unwrap()),
+ f.text_msg(format!("hello world {i}"))
+ .event_id(&EventId::parse(format!("$ev{i}")).unwrap()),
204
);
205
}
206
events
0 commit comments