Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer committed Aug 21, 2024
1 parent 6789e50 commit 749649d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions bindings_ffi/src/mls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2250,8 +2250,7 @@ mod tests {
let bo = new_test_client().await;

for _i in 0..30 {
alix
.conversations()
alix.conversations()
.create_group(
vec![bo.account_address.clone()],
FfiCreateGroupOptions::default(),
Expand All @@ -2271,7 +2270,7 @@ mod tests {
let alix_group5 = alix_groups[5].clone();
let bo_group1 = bo.group(alix_group1.id()).unwrap();
let bo_group5 = bo.group(alix_group5.id()).unwrap();

alix_group1.send("alix1".as_bytes().to_vec()).await.unwrap();
alix_group5.send("alix1".as_bytes().to_vec()).await.unwrap();

Expand All @@ -2285,7 +2284,7 @@ mod tests {
assert_eq!(bo_messages5.len(), 0);

bo.conversations().sync_all_groups().await.unwrap();

let bo_messages1 = bo_group1
.find_messages(FfiListMessagesOptions::default())
.unwrap();
Expand Down

0 comments on commit 749649d

Please sign in to comment.