Skip to content

Commit 16cb265

Browse files
committed
fix: imports
1 parent 7e5919f commit 16cb265

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

crates/matrix-sdk/src/room/mod.rs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ use matrix_sdk_common::timeout::timeout;
2727
use mime::Mime;
2828
#[cfg(feature = "e2e-encryption")]
2929
use ruma::events::{
30-
beacon::BeaconEventContent, room::encrypted::OriginalSyncRoomEncryptedEvent,
31-
AnySyncMessageLikeEvent, AnySyncTimelineEvent, OriginalSyncStateEvent, SyncMessageLikeEvent,
30+
room::encrypted::OriginalSyncRoomEncryptedEvent,
31+
AnySyncMessageLikeEvent, AnySyncTimelineEvent, SyncMessageLikeEvent,
3232
};
3333
use ruma::{
3434
api::client::{
@@ -52,6 +52,7 @@ use ruma::{
5252
},
5353
assign,
5454
events::{
55+
beacon::BeaconEventContent,
5556
beacon_info::BeaconInfoEventContent,
5657
call::notify::{ApplicationType, CallNotifyEventContent, NotifyType},
5758
direct::DirectEventContent,
@@ -72,8 +73,8 @@ use ruma::{
7273
tag::{TagInfo, TagName},
7374
typing::SyncTypingEvent,
7475
AnyRoomAccountDataEvent, AnyRoomAccountDataEventContent, AnyTimelineEvent, EmptyStateKey,
75-
Mentions, MessageLikeEventContent, MessageLikeEventType, RedactContent,
76-
RedactedStateEventContent, RoomAccountDataEvent, RoomAccountDataEventContent,
76+
Mentions, MessageLikeEventContent, MessageLikeEventType, OriginalSyncStateEvent,
77+
RedactContent, RedactedStateEventContent, RoomAccountDataEvent, RoomAccountDataEventContent,
7778
RoomAccountDataEventType, StateEventContent, StateEventType, StaticEventContent,
7879
StaticStateEventContent, SyncStateEvent,
7980
},

crates/matrix-sdk/tests/integration/room/joined.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,8 @@ use matrix_sdk::{
1313
};
1414
use matrix_sdk_base::{deserialized_responses::AnySyncOrStrippedState, RoomState};
1515
use matrix_sdk_test::{
16-
async_test, test_json,
17-
test_json::{sync::CUSTOM_ROOM_POWER_LEVELS},
18-
EphemeralTestEvent, GlobalAccountDataTestEvent, JoinedRoomBuilder, SyncResponseBuilder,
19-
DEFAULT_TEST_ROOM_ID,
16+
async_test, test_json, test_json::sync::CUSTOM_ROOM_POWER_LEVELS, EphemeralTestEvent,
17+
GlobalAccountDataTestEvent, JoinedRoomBuilder, SyncResponseBuilder, DEFAULT_TEST_ROOM_ID,
2018
};
2119
use ruma::{
2220
api::client::{membership::Invite3pidInit, receipt::create_receipt::v3::ReceiptType},

0 commit comments

Comments
 (0)