Skip to content

Commit

Permalink
remove tracing init from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
insipx committed Oct 15, 2024
1 parent 4526efb commit fd4b02c
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 3 deletions.
75 changes: 75 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions xmtp_mls/src/groups/group_metadata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ impl TryFrom<GroupMetadata> for Vec<u8> {
type Error = GroupMetadataError;

fn try_from(value: GroupMetadata) -> Result<Self, Self::Error> {
let conversation_type: ConversationTypeProto = value.conversation_type.into(
);
let conversation_type: ConversationTypeProto = value.conversation_type.into();
let proto_val = GroupMetadataProto {
conversation_type: conversation_type as i32,
creator_inbox_id: value.creator_inbox_id.clone(),
Expand Down
1 change: 0 additions & 1 deletion xmtp_mls/src/groups/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2133,7 +2133,6 @@ pub(crate) mod tests {
#[cfg_attr(target_arch = "wasm32", wasm_bindgen_test::wasm_bindgen_test)]
#[cfg_attr(not(target_arch = "wasm32"), tokio::test(flavor = "current_thread"))]
async fn test_add_missing_installations() {
crate::utils::wasm::init().await;
// Setup for test
let amal_wallet = generate_local_wallet();
let amal = ClientBuilder::new_test_client(&amal_wallet).await;
Expand Down

0 comments on commit fd4b02c

Please sign in to comment.