Merge pull request #2869 from stianst/KEYCLOAK-2851
KEYCLOAK-2851 InitialAccessTokenTest#createExpired fails occasionally
This commit is contained in:
commit
ff20c530cd
1 changed files with 3 additions and 3 deletions
|
@ -50,7 +50,7 @@ public class InitialAccessTokenTest extends AbstractClientRegistrationTest {
|
|||
|
||||
ClientRepresentation rep = new ClientRepresentation();
|
||||
|
||||
Thread.sleep(2);
|
||||
setTimeOffset(10);
|
||||
|
||||
ClientRepresentation created = reg.create(rep);
|
||||
Assert.assertNotNull(created);
|
||||
|
@ -91,12 +91,12 @@ public class InitialAccessTokenTest extends AbstractClientRegistrationTest {
|
|||
|
||||
ClientRepresentation rep = new ClientRepresentation();
|
||||
|
||||
Thread.sleep(2);
|
||||
setTimeOffset(10);
|
||||
|
||||
try {
|
||||
reg.create(rep);
|
||||
} catch (ClientRegistrationException e) {
|
||||
Assert.assertEquals(403, ((HttpErrorException) e.getCause()).getStatusLine().getStatusCode());
|
||||
Assert.assertEquals(401, ((HttpErrorException) e.getCause()).getStatusLine().getStatusCode());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue