Fix cargo fmt issues that the local version didn't auto fix

master
Marcel 2020-06-17 19:16:04 +02:00
parent f07ac5d679
commit d4087a1aae
3 changed files with 3 additions and 3 deletions

View File

@ -1767,8 +1767,8 @@ mod test {
events::{collections::all::RoomEvent, stripped::AnyStrippedStateEvent},
BaseClient, Session,
};
use matrix_sdk_test::{async_test, EventBuilder, EventsFile};
use matrix_sdk_common_macros::async_trait;
use matrix_sdk_test::{async_test, EventBuilder, EventsFile};
use serde_json::json;
use std::convert::TryFrom;

View File

@ -202,9 +202,9 @@ pub trait EventEmitter: Send + Sync {
mod test {
use super::*;
use matrix_sdk_common::locks::Mutex;
use matrix_sdk_common_macros::async_trait;
use matrix_sdk_test::{async_test, sync_response, SyncResponseFile};
use std::sync::Arc;
use matrix_sdk_common_macros::async_trait;
#[cfg(target_arch = "wasm32")]
pub use wasm_bindgen_test::*;

View File

@ -27,8 +27,8 @@ use super::device::Device;
use super::memory_stores::UserDevices;
use super::olm::{Account, InboundGroupSession, Session};
use matrix_sdk_common::identifiers::{DeviceId, RoomId, UserId};
use olm_rs::errors::{OlmAccountError, OlmGroupSessionError, OlmSessionError};
use matrix_sdk_common_macros::send_sync;
use olm_rs::errors::{OlmAccountError, OlmGroupSessionError, OlmSessionError};
pub mod memorystore;