From 5f40074507e490ea83c1049ac9cb94cf4cc8082c Mon Sep 17 00:00:00 2001 From: Marta Mularczyk Date: Mon, 20 Jan 2025 09:40:09 +0100 Subject: [PATCH] Fix test and warning --- mls-rs/src/group/message_verifier.rs | 6 ++---- mls-rs/test_harness_integration/src/main.rs | 2 ++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mls-rs/src/group/message_verifier.rs b/mls-rs/src/group/message_verifier.rs index 25707a0f..50f70c37 100644 --- a/mls-rs/src/group/message_verifier.rs +++ b/mls-rs/src/group/message_verifier.rs @@ -224,6 +224,7 @@ mod tests { group::{ membership_tag::MembershipTag, message_signature::{AuthenticatedContent, MessageSignature}, + test_utils::test_group, test_utils::TestGroup, Group, PublicMessage, }, @@ -250,10 +251,7 @@ mod tests { use alloc::boxed::Box; #[cfg(feature = "by_ref_proposal")] - use crate::group::{ - test_utils::{test_group, test_member}, - Sender, - }; + use crate::group::{test_utils::test_member, Sender}; #[cfg(feature = "by_ref_proposal")] use crate::identity::test_utils::get_test_signing_identity; diff --git a/mls-rs/test_harness_integration/src/main.rs b/mls-rs/test_harness_integration/src/main.rs index 50e5e3c5..bcc5bbab 100644 --- a/mls-rs/test_harness_integration/src/main.rs +++ b/mls-rs/test_harness_integration/src/main.rs @@ -119,6 +119,8 @@ struct ClientDetails { group: Option>, signing_identity: SigningIdentity, signer: SignatureSecretKey, + // TODO follow up PR removes this field + #[allow(unused)] mls_rules: TestMlsRules, }