JAMES-2441 Reduce poll delay in Cassandra LDAP guice tests
Project: http://git-wip-us.apache.org/repos/asf/james-project/repo Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/21bb9757 Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/21bb9757 Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/21bb9757 Branch: refs/heads/master Commit: 21bb9757b010460e81fe930a3f72d35bc2b199b1 Parents: 53dc38f Author: benwa <[email protected]> Authored: Mon Jul 2 16:45:46 2018 +0700 Committer: benwa <[email protected]> Committed: Tue Jul 3 09:47:14 2018 +0700 ---------------------------------------------------------------------- .../test/java/org/apache/james/CassandraLdapJamesServerTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/james-project/blob/21bb9757/server/container/guice/cassandra-ldap-guice/src/test/java/org/apache/james/CassandraLdapJamesServerTest.java ---------------------------------------------------------------------- diff --git a/server/container/guice/cassandra-ldap-guice/src/test/java/org/apache/james/CassandraLdapJamesServerTest.java b/server/container/guice/cassandra-ldap-guice/src/test/java/org/apache/james/CassandraLdapJamesServerTest.java index 60840da..723f357 100644 --- a/server/container/guice/cassandra-ldap-guice/src/test/java/org/apache/james/CassandraLdapJamesServerTest.java +++ b/server/container/guice/cassandra-ldap-guice/src/test/java/org/apache/james/CassandraLdapJamesServerTest.java @@ -19,7 +19,7 @@ package org.apache.james; -import static com.jayway.awaitility.Duration.FIVE_HUNDRED_MILLISECONDS; +import static com.jayway.awaitility.Duration.ONE_HUNDRED_MILLISECONDS; import static org.assertj.core.api.Assertions.assertThat; import java.io.IOException; @@ -43,7 +43,7 @@ public class CassandraLdapJamesServerTest extends AbstractJmapJamesServerTest { private static final String PASSWORD = "secret"; private static final String DOMAIN = "james.org"; private static final String ADMIN_PASSWORD = "mysecretpassword"; - private static Duration slowPacedPollInterval = FIVE_HUNDRED_MILLISECONDS; + private static Duration slowPacedPollInterval = ONE_HUNDRED_MILLISECONDS; private static ConditionFactory calmlyAwait = Awaitility.with() .pollInterval(slowPacedPollInterval) .and() --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
