KEYCLOAK-2851 InitialAccessTokenTest#createExpired fails occasionally

This commit is contained in:
Stian Thorgersen 2016-05-23 09:33:33 +02:00
parent 74809b4132
commit e52f7c56a9

View file

@ -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());
}
}