Fix amr test

Closes #26117

Signed-off-by: Giuseppe Graziano <g.graziano94@gmail.com>
This commit is contained in:
Giuseppe Graziano 2024-09-18 11:56:54 +02:00 committed by Alexander Schwartz
parent be13366c17
commit 849ca3efb9

View file

@ -288,13 +288,13 @@ public class AuthenticationMethodReferenceTest extends AbstractOIDCScopeTest{
*/ */
@Test @Test
public void testAmrPastMaxAge() { public void testAmrPastMaxAge() {
setAmr("browser", "auth-username-password-form", "password", 0); setAmr("browser", "auth-username-password-form", "password", 10);
List<String> expectedAmrs = new ArrayList<>(); List<String> expectedAmrs = new ArrayList<>();
authenticatePassword("test-user", PASSWORD); authenticatePassword("test-user", PASSWORD);
// server time forward by 60 seconds to ensure max age is exceeded // server time forward by 20 seconds to ensure max age is exceeded
setTimeOffset(60); setTimeOffset(20);
Tokens tokens = assertLogin(passwordUserId); Tokens tokens = assertLogin(passwordUserId);