Skip to content

Commit

Permalink
Fixing cleanup in AD LDAP conntest
Browse files Browse the repository at this point in the history
  • Loading branch information
semancik committed Mar 21, 2016
1 parent 8e1d26e commit e7e6f9c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Expand Up @@ -265,6 +265,7 @@ public void test000Sanity() throws Exception {
cleanupDelete(toAccountDn(USER_CPTBARBOSSA_USERNAME, USER_CPTBARBOSSA_FULL_NAME));
cleanupDelete(toAccountDn(USER_GUYBRUSH_USERNAME, USER_GUYBRUSH_FULL_NAME));
cleanupDelete(toGroupDn(GROUP_MELEE_ISLAND_NAME));
cleanupDelete(toGroupDn(GROUP_FOOLS_CN));
}

@Test
Expand Down
@@ -1,6 +1,6 @@
package com.evolveum.midpoint.testing.conntest;
/*
* Copyright (c) 2010-2015 Evolveum
* Copyright (c) 2010-2016 Evolveum
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -140,11 +140,11 @@ public abstract class AbstractLdapSynchronizationTest extends AbstractLdapTest {
protected static final String ACCOUNT_HTM_UID = "htm";
protected static final String ACCOUNT_HTM_CN = "Horatio Torquemada Marley";

private static final String GROUP_MONKEYS_CN = "monkeys";
private static final String GROUP_MONKEYS_DESCRIPTION = "Monkeys of Monkey Island";
protected static final String GROUP_MONKEYS_CN = "monkeys";
protected static final String GROUP_MONKEYS_DESCRIPTION = "Monkeys of Monkey Island";

private static final String GROUP_FOOLS_CN = "fools";
private static final String GROUP_FOOLS_DESCRIPTION = "not quite the shilling";
protected static final String GROUP_FOOLS_CN = "fools";
protected static final String GROUP_FOOLS_DESCRIPTION = "not quite the shilling";


protected abstract void assertStepSyncToken(String syncTaskOid, int step, long tsStart, long tsEnd) throws ObjectNotFoundException, SchemaException;
Expand Down

0 comments on commit e7e6f9c

Please sign in to comment.