[hornetq-commits] JBoss hornetq SVN: r11996 - branches/Branch_2_2_EAP/tests/src/org/hornetq/tests/integration/client.

do-not-reply at jboss.org do-not-reply at jboss.org
Fri Jan 6 15:58:24 EST 2012


Author: clebert.suconic at jboss.com
Date: 2012-01-06 15:58:23 -0500 (Fri, 06 Jan 2012)
New Revision: 11996

Modified:
   branches/Branch_2_2_EAP/tests/src/org/hornetq/tests/integration/client/PagingTest.java
Log:
duh.. fix on test

Modified: branches/Branch_2_2_EAP/tests/src/org/hornetq/tests/integration/client/PagingTest.java
===================================================================
--- branches/Branch_2_2_EAP/tests/src/org/hornetq/tests/integration/client/PagingTest.java	2012-01-06 19:21:21 UTC (rev 11995)
+++ branches/Branch_2_2_EAP/tests/src/org/hornetq/tests/integration/client/PagingTest.java	2012-01-06 20:58:23 UTC (rev 11996)
@@ -4380,7 +4380,7 @@
          PagingStore store = server.getPagingManager().getPageStore(ADDRESS);
 
          // It's async, so need to wait a bit for it happening
-         while (timeout < System.currentTimeMillis() && store.isPaging())
+         while (timeout > System.currentTimeMillis() && store.isPaging())
          {
             Thread.sleep(100);
          }



More information about the hornetq-commits mailing list