Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
richardhuaaa committed Dec 13, 2023
1 parent a4dad4f commit dc78398
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bindings_ffi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ mod tests {
distributions::{Alphanumeric, DistString},
};
use xmtp_cryptography::{signature::RecoverableSignature, utils::rng};
use xmtp_mls::InboxOwner;
use xmtp_mls::{storage::EncryptionKey, InboxOwner};

#[derive(Clone)]
pub struct LocalWalletInboxOwner {
Expand Down Expand Up @@ -326,6 +326,10 @@ mod tests {
format!("{}/{}.db3", env::temp_dir().to_str().unwrap(), db_name)
}

fn static_enc_key() -> EncryptionKey {
[2u8; 32]
}

async fn new_test_client() -> Arc<FfiXmtpClient> {
let ffi_inbox_owner = LocalWalletInboxOwner::new();

Expand Down

0 comments on commit dc78398

Please sign in to comment.