Skip to content

Commit b587c06

Browse files
committed
timeline: prefix more tests with test_
1 parent 52dc64e commit b587c06

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

crates/matrix-sdk-ui/src/timeline/tests/echo.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ use super::TestTimeline;
2828
use crate::timeline::event_item::EventSendState;
2929

3030
#[async_test]
31-
async fn remote_echo_full_trip() {
31+
async fn test_remote_echo_full_trip() {
3232
let timeline = TestTimeline::new();
3333
let mut stream = timeline.subscribe().await;
3434

@@ -113,7 +113,7 @@ async fn remote_echo_full_trip() {
113113
}
114114

115115
#[async_test]
116-
async fn remote_echo_new_position() {
116+
async fn test_remote_echo_new_position() {
117117
let timeline = TestTimeline::new();
118118
let mut stream = timeline.subscribe().await;
119119

@@ -167,7 +167,7 @@ async fn remote_echo_new_position() {
167167
}
168168

169169
#[async_test]
170-
async fn day_divider_duplication() {
170+
async fn test_day_divider_duplication() {
171171
let timeline = TestTimeline::new();
172172

173173
// Given two remote events from one day, and a local event from another day…

crates/matrix-sdk-ui/tests/integration/timeline/replies.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ use wiremock::{
3434
use crate::{mock_encryption_state, mock_sync};
3535

3636
#[async_test]
37-
async fn in_reply_to_details() {
37+
async fn test_in_reply_to_details() {
3838
let room_id = room_id!("!a98sd12bjh:example.org");
3939
let (client, server) = logged_in_client_with_server().await;
4040
let event_builder = EventBuilder::new();
@@ -171,7 +171,7 @@ async fn in_reply_to_details() {
171171
}
172172

173173
#[async_test]
174-
async fn transfer_in_reply_to_details_to_re_received_item() {
174+
async fn test_transfer_in_reply_to_details_to_re_received_item() {
175175
let room_id = room_id!("!a98sd12bjh:example.org");
176176
let (client, server) = logged_in_client_with_server().await;
177177
let event_builder = EventBuilder::new();
@@ -253,7 +253,7 @@ async fn transfer_in_reply_to_details_to_re_received_item() {
253253
}
254254

255255
#[async_test]
256-
async fn send_reply() {
256+
async fn test_send_reply() {
257257
let room_id = room_id!("!a98sd12bjh:example.org");
258258
let (client, server) = logged_in_client_with_server().await;
259259
let event_builder = EventBuilder::new();
@@ -344,7 +344,7 @@ async fn send_reply() {
344344
}
345345

346346
#[async_test]
347-
async fn send_reply_to_threaded() {
347+
async fn test_send_reply_to_threaded() {
348348
let room_id = room_id!("!a98sd12bjh:example.org");
349349
let (client, server) = logged_in_client_with_server().await;
350350
let event_builder = EventBuilder::new();

0 commit comments

Comments
 (0)