Skip to content

Commit

Permalink
Fixing conntests (AD and OpenLDAP)
Browse files Browse the repository at this point in the history
  • Loading branch information
semancik committed Oct 21, 2015
1 parent d4c932a commit 6059b2c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Expand Up @@ -682,7 +682,7 @@ public void test200AssignAccountBarbossa() throws Exception {
assertNotNull("No createTimestamp in "+shadow, createTimestampAttribute);
Long createTimestamp = createTimestampAttribute.getRealValue();
// LDAP server may be on a different host. Allow for some clock offset.
TestUtil.assertBetween("Wrong createTimestamp in "+shadow, roundTsDown(tsStart)-10000, roundTsUp(tsEnd)+10000, createTimestamp);
TestUtil.assertBetween("Wrong createTimestamp in "+shadow, roundTsDown(tsStart)-20000, roundTsUp(tsEnd)+20000, createTimestamp);
}

@Test
Expand Down
Expand Up @@ -114,6 +114,11 @@ protected String getSyncTaskOid() {
protected boolean syncCanDetectDelete() {
return false;
}

@Override
protected boolean needsGroupFakeMemeberEntry() {
return true;
}

@Override
protected void assertStepSyncToken(String syncTaskOid, int step, long tsStart, long tsEnd)
Expand Down

0 comments on commit 6059b2c

Please sign in to comment.