Skip to content

Commit

Permalink
fix up
Browse files Browse the repository at this point in the history
  • Loading branch information
Firstyear committed Apr 27, 2024
1 parent 24b6ad8 commit 1ca95d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion webauthn-authenticator-rs/src/softpasskey.rs
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ mod tests {
let cred = wan.register_credential(&r, &reg_state, None).unwrap();

let (chal, auth_state) = wan
.generate_challenge_authenticate(vec![cred], None, None, None)
.generate_challenge_authenticate(vec![cred], None, None, None, None)
.unwrap();

let r = wa
Expand Down
4 changes: 2 additions & 2 deletions webauthn-authenticator-rs/src/softtoken.rs
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,7 @@ mod tests {
info!("Credential -> {:?}", cred);

let (chal, auth_state) = wan
.generate_challenge_authenticate(vec![cred], None, None, None)
.generate_challenge_authenticate(vec![cred], None, None, None, None)
.unwrap();

let r = wa
Expand Down Expand Up @@ -1014,7 +1014,7 @@ mod tests {
let mut wa = WebauthnAuthenticator::new(soft_token);

let (chal, auth_state) = wan
.generate_challenge_authenticate(vec![cred], None, None, None)
.generate_challenge_authenticate(vec![cred], None, None, None, None)
.unwrap();

let r = wa
Expand Down

0 comments on commit 1ca95d1

Please sign in to comment.