Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
codabrink committed Dec 20, 2024
1 parent 14693de commit b234f27
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions xmtp_mls/src/storage/encrypted_store/group_message.rs
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ pub(crate) mod tests {
.get_group_messages(
&group.id,
&MsgQueryArgs {
content_types: vec![ContentType::Text],
content_types: Some(vec![ContentType::Text]),
..Default::default()
},
)
Expand All @@ -643,7 +643,7 @@ pub(crate) mod tests {
.get_group_messages(
&group.id,
&MsgQueryArgs {
content_types: vec![ContentType::GroupMembershipChange],
content_types: Some(vec![ContentType::GroupMembershipChange]),
..Default::default()
},
)
Expand All @@ -660,7 +660,7 @@ pub(crate) mod tests {
.get_group_messages(
&group.id,
&MsgQueryArgs {
content_types: vec![ContentType::GroupUpdated],
content_types: Some(vec![ContentType::GroupUpdated]),
..Default::default()
},
)
Expand Down

0 comments on commit b234f27

Please sign in to comment.