PubKeySignRegisterTest failures in WebAuthn tests

Fixes #9693

Signed-off-by: Martin Bartoš <mabartos@redhat.com>
This commit is contained in:
Martin Bartoš 2023-12-15 12:49:20 +01:00 committed by Alexander Schwartz
parent 8263c538d8
commit 14fd61bacc

View file

@ -36,7 +36,7 @@ import static org.hamcrest.CoreMatchers.notNullValue;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.keycloak.crypto.Algorithm.ES256;
import static org.keycloak.crypto.Algorithm.ES512;
import static org.keycloak.crypto.Algorithm.RS256;
import static org.keycloak.crypto.Algorithm.RS384;
import static org.keycloak.crypto.Algorithm.RS512;
/**
@ -61,7 +61,7 @@ public class PubKeySignRegisterTest extends AbstractWebAuthnVirtualTest {
@Test
public void publicKeySignaturesRSA() {
assertPublicKeyAlgorithms(false, null, Lists.newArrayList(RS256, ES512));
assertPublicKeyAlgorithms(false, null, Lists.newArrayList(RS384, ES512));
}
@Test