# sprint-3 minor

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

Branch: refs/heads/ignite-443
Commit: 87cec9823a2df33a89d73f68770d4d7af0c89aee
Parents: 50701cb
Author: sboikov <sboi...@gridgain.com>
Authored: Mon Mar 30 09:18:13 2015 +0300
Committer: sboikov <sboi...@gridgain.com>
Committed: Mon Mar 30 09:18:13 2015 +0300

----------------------------------------------------------------------
 .../java/org/apache/ignite/IgniteCacheAffinitySelfTest.java  | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/87cec982/modules/core/src/test/java/org/apache/ignite/IgniteCacheAffinitySelfTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/IgniteCacheAffinitySelfTest.java 
b/modules/core/src/test/java/org/apache/ignite/IgniteCacheAffinitySelfTest.java
index e07fcea..c4683fd 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/IgniteCacheAffinitySelfTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/IgniteCacheAffinitySelfTest.java
@@ -36,7 +36,7 @@ import static org.apache.ignite.cache.CacheMode.*;
  */
 public class IgniteCacheAffinitySelfTest extends IgniteCacheAbstractTest {
     /** Initial grid count. */
-    private int GRID_COUNT = 3;
+    private int GRID_CNT = 3;
 
     /** Cache name */
     private final String CACHE1 = "Fair";
@@ -46,7 +46,7 @@ public class IgniteCacheAffinitySelfTest extends 
IgniteCacheAbstractTest {
 
     /** {@inheritDoc} */
     @Override protected int gridCount() {
-        return GRID_COUNT;
+        return GRID_CNT;
     }
 
     /** {@inheritDoc} */
@@ -87,7 +87,7 @@ public class IgniteCacheAffinitySelfTest extends 
IgniteCacheAbstractTest {
     }
 
     /**
-     * Throws Exception if failed.
+     * @throws Exception if failed.
      */
     public void testAffinity() throws Exception {
         checkAffinity();
@@ -97,7 +97,7 @@ public class IgniteCacheAffinitySelfTest extends 
IgniteCacheAbstractTest {
         startGrid(gridCount() - 1);
         startGrid(gridCount());
 
-        GRID_COUNT += 1;
+        GRID_CNT += 1;
 
         checkAffinity();
     }

Reply via email to