Merge pull request #4178 from pdrozd/ldap-import-test
KEYCLOAK-4958 Fix condition for skipping test
This commit is contained in:
commit
73c328d5e3
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ public class LDAPLegacyImportTest {
|
|||
|
||||
// This test is executed just for the embedded LDAP server
|
||||
private static LDAPRule ldapRule = new LDAPRule((Map<String, String> ldapConfig) -> {
|
||||
return Boolean.parseBoolean(ldapConfig.get("startEmbeddedLdapServer"));
|
||||
return !Boolean.parseBoolean(ldapConfig.get("startEmbeddedLdapServer"));
|
||||
});
|
||||
|
||||
private static ComponentModel ldapModel = null;
|
||||
|
|
Loading…
Reference in a new issue