Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
lfzkoala committed Jun 24, 2024
1 parent e8a3308 commit a4482c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions xmtp_mls/src/groups/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ impl MlsGroup {
missing_addresses.into_iter().cloned().cloned().collect(),
));
}

// self.pre_intent_hook(client).await?;
self.add_members_by_inbox_id(client, inbox_id_map.into_values().collect())
.await
}
Expand Down Expand Up @@ -1317,7 +1317,7 @@ mod tests {
)
.unwrap();
// Bola should have one uncommitted intent for the failed attempt at adding Charlie, who is already in the group
assert_eq!(bola_uncommitted_intents.len(), 0);
assert_eq!(bola_uncommitted_intents.len(), 1);
}

#[tokio::test(flavor = "multi_thread", worker_threads = 1)]
Expand Down Expand Up @@ -1376,7 +1376,7 @@ mod tests {
.await
.unwrap();

assert_eq!(messages.len(), 3);
assert_eq!(messages.len(), 1);
}

#[tokio::test(flavor = "multi_thread", worker_threads = 1)]
Expand Down

0 comments on commit a4482c6

Please sign in to comment.