Merge pull request #4178 from pdrozd/ldap-import-test

KEYCLOAK-4958 Fix condition for skipping test
This commit is contained in:
Pavel Drozd 2017-05-24 00:32:22 +02:00 committed by GitHub
commit 73c328d5e3

View file

@ -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;