Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix async build error
Browse files Browse the repository at this point in the history
tomleavy committed Jan 15, 2025
1 parent 38433c1 commit d92b3c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mls-rs/src/group/mod.rs
Original file line number Diff line number Diff line change
@@ -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]);

0 comments on commit d92b3c8

Please sign in to comment.