Skip to content

Commit

Permalink
Incresing clock difference tolerance
Browse files Browse the repository at this point in the history
  • Loading branch information
semancik committed Oct 27, 2015
1 parent f067026 commit 67c722a
Showing 1 changed file with 1 addition 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)-20000, roundTsUp(tsEnd)+20000, createTimestamp);
TestUtil.assertBetween("Wrong createTimestamp in "+shadow, roundTsDown(tsStart)-120000, roundTsUp(tsEnd)+120000, createTimestamp);
}

@Test
Expand Down

0 comments on commit 67c722a

Please sign in to comment.