Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ org-sonarsource-scanner-gradle-sonarqube-gradle-plugin = "org.sonarsource.scanne
org-instancio-instancio-junit = "org.instancio:instancio-junit:3.7.1"

spring-nullability = 'io.spring.nullability:io.spring.nullability.gradle.plugin:0.0.13'
webauthn4j-core = 'com.webauthn4j:webauthn4j-core:0.31.1.RELEASE'
webauthn4j-core = 'com.webauthn4j:webauthn4j-core:0.31.2.RELEASE'
com-password4j-password4j = { module = "com.password4j:password4j", version.ref = "com-password4j" }

[plugins]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ void registerCredentialWhenBSInformsUserExperienceBSTrue() {
* https://www.w3.org/TR/webauthn-3/#sctn-registering-a-new-credential
*
* 19. Verify that the "alg" parameter in the credential public key in authData
* matches the alg attribute of one of the items in options.pubKeyCredParams.
* matches the alg attribute of one of the items in pkOptions.pubKeyCredParams.
*/
@Test
void registerCredentialWhenAlgDoesNotMatchOptions() {
Expand All @@ -536,7 +536,7 @@ void registerCredentialWhenAlgDoesNotMatchOptions() {
options, new RelyingPartyPublicKey(publicKey, this.label));

assertThatRuntimeException().isThrownBy(() -> this.rpOperations.registerCredential(registrationRequest))
.withMessageContaining("options.pubKeyCredParams");
.withMessageContaining("pkOptions.pubKeyCredParams");
}

/**
Expand Down
Loading