mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

gbellato
19.02.2009 5d526e84073686dfd7d381a3fc064acdfc25bc1b
Increase the polling period for the test  : org.opends.server.replication.service.ReplicationDomainTest#publishAndReceive
It was 1 second up to now which looks like is too small for the build machine.
1 files modified
2 ■■■ changed files
opends/tests/unit-tests-testng/src/server/org/opends/server/replication/service/ReplicationDomainTest.java 2 ●●● patch | view | raw | blame | history
opends/tests/unit-tests-testng/src/server/org/opends/server/replication/service/ReplicationDomainTest.java
@@ -136,7 +136,7 @@
      byte[] test = {1, 2, 3 ,4, 0, 1, 2, 3, 4, 5};
      domain1.publish(test);
      UpdateMsg rcvdMsg = rcvQueue2.poll(1, TimeUnit.SECONDS);
      UpdateMsg rcvdMsg = rcvQueue2.poll(20, TimeUnit.SECONDS);
      assertNotNull(rcvdMsg);
      assertEquals(test, rcvdMsg.getPayload());