[jbosscache-commits] JBoss Cache SVN: r5676 - core/trunk/src/test/java/org/jboss/cache/cluster.

jbosscache-commits at lists.jboss.org jbosscache-commits at lists.jboss.org
Thu Apr 24 12:17:06 EDT 2008


Author: manik.surtani at jboss.com
Date: 2008-04-24 12:17:05 -0400 (Thu, 24 Apr 2008)
New Revision: 5676

Modified:
   core/trunk/src/test/java/org/jboss/cache/cluster/ReplicationQueueTest.java
Log:
Fixed

Modified: core/trunk/src/test/java/org/jboss/cache/cluster/ReplicationQueueTest.java
===================================================================
--- core/trunk/src/test/java/org/jboss/cache/cluster/ReplicationQueueTest.java	2008-04-24 16:16:46 UTC (rev 5675)
+++ core/trunk/src/test/java/org/jboss/cache/cluster/ReplicationQueueTest.java	2008-04-24 16:17:05 UTC (rev 5676)
@@ -82,7 +82,7 @@
 
       // now try the last PUT which should result in the queue being flushed.
       expect(mockRpcManager.getMembers()).andReturn(originalRpcManager.getMembers()).anyTimes();
-      expect(mockRpcManager.callRemoteMethods((List<Address>) anyObject(), (CacheCommand) anyObject(), anyBoolean(), anyBoolean(), anyInt(), anyBoolean())).andReturn(Collections.emptyList()).once();
+      expect(mockRpcManager.callRemoteMethods((List<Address>) anyObject(), (CacheCommand) anyObject(), anyBoolean(), anyBoolean(), anyInt(), anyBoolean())).andReturn(Collections.emptyList()).anyTimes();
       replay(mockRpcManager);
 
       cache.put("/a/b/c/LAST", "k", "v");




More information about the jbosscache-commits mailing list