Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer committed Apr 30, 2024
1 parent f3e6248 commit acdea30
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion openmls/src/group/mls_group/test_mls_group.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1210,7 +1210,9 @@ fn immutable_metadata(ciphersuite: Ciphersuite, provider: &impl OpenMlsProvider)
.commit_to_pending_proposals(provider, &alice_signer)
.expect_err("should not have been able to commit to proposal that changes metadata");

group_with_metadata.clear_pending_proposals(provider.storage()).unwrap();
group_with_metadata
.clear_pending_proposals(provider.storage())
.unwrap();

assert_eq!(group_with_metadata.pending_proposals().count(), 0);

Expand Down

0 comments on commit acdea30

Please sign in to comment.