#ignite-373: Change number of nodes in removeAll test.

Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/735e9cfa
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/735e9cfa
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/735e9cfa

Branch: refs/heads/ignite-373
Commit: 735e9cfa611baad26bc0ba9b42a887c5613338d7
Parents: 794cde2
Author: ivasilinets <ivasilin...@gridgain.com>
Authored: Tue May 12 11:50:58 2015 +0300
Committer: ivasilinets <ivasilin...@gridgain.com>
Committed: Tue May 12 11:50:58 2015 +0300

----------------------------------------------------------------------
 .../ignite/internal/processors/cache/CacheRemoveAllSelfTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/735e9cfa/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheRemoveAllSelfTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheRemoveAllSelfTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheRemoveAllSelfTest.java
index c4455b7..a55ee4b 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheRemoveAllSelfTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheRemoveAllSelfTest.java
@@ -53,12 +53,12 @@ public class CacheRemoveAllSelfTest extends 
GridCacheAbstractSelfTest {
 
         IgniteInternalFuture fut = GridTestUtils.runMultiThreadedAsync(new 
Callable<Object>() {
             @Override public Object call() throws Exception {
-                for (int i = 0; i < 3; ++i)
+                for (int i = 0; i < 2; ++i)
                     startGrid(igniteId.getAndIncrement());
 
                 return true;
             }
-        }, 2, "start-node-thread");
+        }, 3, "start-node-thread");
 
         cache.removeAll();
 

Reply via email to