Skip to content

Commit

Permalink
fix async build error
Browse files Browse the repository at this point in the history
  • Loading branch information
tomleavy committed Jan 15, 2025
1 parent 38433c1 commit f277406
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mls-rs/src/group/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3683,7 +3683,7 @@ mod tests {
#[maybe_async::test(not(mls_build_async), async(mls_build_async, crate::futures_test))]
async fn can_process_with_psk() {
let mut alice = test_group(TEST_PROTOCOL_VERSION, TEST_CIPHER_SUITE).await;
let (mut bob, _) = alice.join("bob");
let (mut bob, _) = alice.join("bob").await;

let psk_id_external = ExternalPskId::new(vec![0]);
let psk_external = PreSharedKey::from(vec![1]);
Expand All @@ -3695,7 +3695,7 @@ mod tests {
psk_epoch,
};

let psk_resumption = bob.resumption_secret(psk_epoch).unwrap();
let psk_resumption = bob.resumption_secret(psk_epoch).await.unwrap();

let commit = alice
.commit_builder()
Expand Down

0 comments on commit f277406

Please sign in to comment.