Instead of the test blocking for an unknown reason, specify a timeout
Closes #29528 Signed-off-by: Alexander Schwartz <aschwart@redhat.com>
This commit is contained in:
parent
2f0576233b
commit
46f0da43da
1 changed files with 2 additions and 2 deletions
|
@ -375,12 +375,12 @@ public class SessionTimeoutsTest extends KeycloakModelTest {
|
|||
testUserClientMaxLifespanSmallerThanSession(false, true);
|
||||
}
|
||||
|
||||
@Test
|
||||
@Test(timeout = 10 * 1000)
|
||||
public void testOnlineUserClientIdleTimeoutSmallerThanSessionNoRefresh() {
|
||||
testUserClientIdleTimeoutSmallerThanSession(0, false, false);
|
||||
}
|
||||
|
||||
@Test
|
||||
@Test(timeout = 10 * 1000)
|
||||
public void testOnlineUserClientIdleTimeoutSmallerThanSessionOneRefresh() {
|
||||
testUserClientIdleTimeoutSmallerThanSession(1, false, false);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue