From 48176c0f7ca0c8c670dfb13a5978de571ca10313 Mon Sep 17 00:00:00 2001 From: grubskim Date: Wed, 15 Feb 2017 15:29:09 +0100 Subject: [PATCH] Fix for failing tests --- .../javasrc/org/oscm/ui/filter/AuthenticationSettings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oscm-portal/javasrc/org/oscm/ui/filter/AuthenticationSettings.java b/oscm-portal/javasrc/org/oscm/ui/filter/AuthenticationSettings.java index 87a2ab78b..960ed47eb 100644 --- a/oscm-portal/javasrc/org/oscm/ui/filter/AuthenticationSettings.java +++ b/oscm-portal/javasrc/org/oscm/ui/filter/AuthenticationSettings.java @@ -124,7 +124,7 @@ private VOTenant getTenantWithSettings(String tenantID) throws NotExistentTenant } private void validateTenant(VOTenant tenant) throws WrongTenantConfigurationException { - if (getConfigurationSetting(cfgService, ConfigurationKey.AUTH_MODE).equals("INTERNAL")) { + if (isInternal()) { return; } for (IdpSettingType idpSettingType : getMandatorySSOSettingKeys()) {