Skip to content

Commit

Permalink
fix: adjust ead return order after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
geonnave committed Jan 16, 2024
1 parent 90c879a commit 64e69bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ead/lakers-ead-authz/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ mod test_authz {
Some(ACL_INVALID_TV.try_into().unwrap()),
);

let (ead_1, mut device) =
let (mut device, ead_1) =
device.prepare_ead_1(&mut default_crypto(), G_XW_TV.try_into().unwrap(), SS_TV);
device.set_h_message_1(H_MESSAGE_1_TV.try_into().unwrap());

let (_loc_w, voucher_request, _authenticator) = authenticator
let (_authenticator, _loc_w, voucher_request) = authenticator
.process_ead_1(&ead_1, &MESSAGE_1_WITH_EAD_TV.try_into().unwrap())
.unwrap();

Expand Down

0 comments on commit 64e69bd

Please sign in to comment.