Skip to content

Commit

Permalink
Fixing LDAP conntests
Browse files Browse the repository at this point in the history
  • Loading branch information
semancik committed Sep 9, 2015
1 parent 8399ecd commit d8388a9
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -50,6 +50,7 @@
import org.springframework.test.context.ContextConfiguration;
import org.testng.AssertJUnit;
import org.testng.annotations.AfterClass;
import org.testng.annotations.Listeners;
import org.testng.annotations.Test;
import org.apache.commons.lang.mutable.MutableInt;
import org.apache.directory.api.ldap.codec.api.BinaryAttributeDetector;
Expand Down Expand Up @@ -135,6 +136,7 @@
*
*/
@ContextConfiguration(locations = {"classpath:ctx-conntest-test-main.xml"})
@Listeners({ com.evolveum.midpoint.tools.testng.AlphabeticalMethodInterceptor.class })
@DirtiesContext(classMode = ClassMode.AFTER_CLASS)
public abstract class AbstractLdapTest extends AbstractModelIntegrationTest {

Expand Down Expand Up @@ -262,7 +264,7 @@ protected String getGroupsLdapSuffix() {
}

public String getPrimaryIdentifierAttributeName() {
return "entryUuid";
return "entryUUID";
}

public QName getPrimaryIdentifierAttributeQName() {
Expand Down

0 comments on commit d8388a9

Please sign in to comment.