crypto: Fix a clippy warning.

master
Damir Jelić 2020-10-08 12:59:10 +02:00
parent 19d513e3c0
commit 723fdeaa06
1 changed files with 1 additions and 1 deletions

View File

@ -414,7 +414,7 @@ pub(crate) mod test {
inner: account,
store: store.clone(),
};
let group = GroupSessionManager::new(account.clone(), store.clone());
let group = GroupSessionManager::new(account, store.clone());
IdentityManager::new(user_id, Arc::new(device_id()), store, group)
}