KEYCLOAK-8120 Fix NullPointerException in ClaimInformationPointProviderTest

This commit is contained in:
mhajas 2018-08-23 09:13:42 +02:00 committed by Pavel Drozd
parent 0a8fca7ec4
commit 694966b613

View file

@ -138,7 +138,9 @@ public class ClaimInformationPointProviderTest extends AbstractKeycloakTest {
@AfterClass
public static void onAfterClass() {
httpService.stop();
if (httpService != null) {
httpService.stop();
}
}
@Override