QPIDJMS-98: make test less aggressive to account for slower shared CI services
diff --git a/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/IdleTimeoutIntegrationTest.java b/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/IdleTimeoutIntegrationTest.java
index 66280ff..f372e02 100644
--- a/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/IdleTimeoutIntegrationTest.java
+++ b/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/IdleTimeoutIntegrationTest.java
@@ -197,9 +197,9 @@
     @Test(timeout = 20000)
     public void testConnectionNotMarkedFailedWhenPeerSendsEmptyFrames() throws Exception {
         try (TestAmqpPeer testPeer = new TestAmqpPeer();) {
-            int configuredTimeout = 1000;
-            int period = 250;
-            int cycles = 8;
+            int configuredTimeout = 2000;
+            int period = 500;
+            int cycles = 6;
 
             final CountDownLatch latch = new CountDownLatch(cycles);