crypto: Remove unused imports from integration_tests.rs

The warnings were hidden because no-one within this crate used this macro.
This commit is contained in:
Andy Balaam 2024-03-15 12:10:28 +00:00
parent 555dfe0e77
commit ee23839259
1 changed files with 3 additions and 4 deletions

View File

@ -10,12 +10,11 @@ macro_rules! cryptostore_integration_tests {
use matrix_sdk_test::async_test;
use ruma::{
device_id,
encryption::SignedKey,
events::secret::request::SecretName,
room_id,
serde::{Base64, Raw},
serde::Raw,
to_device::DeviceIdOrAllDevices,
user_id, DeviceId, JsOption, OwnedDeviceId, OwnedUserId, RoomId, TransactionId, UserId
user_id, DeviceId, RoomId, TransactionId, UserId
};
use serde_json::value::to_raw_value;
use $crate::{
@ -24,7 +23,7 @@ macro_rules! cryptostore_integration_tests {
PrivateCrossSigningIdentity, Account, Session,
},
store::{
BackupKeys, Changes, CryptoStore, DeviceChanges,
Changes, CryptoStore, DeviceChanges,
GossipRequest, IdentityChanges, BackupDecryptionKey, RoomSettings, PendingChanges,
},
testing::{get_device, get_other_identity, get_own_identity},