ignite-db - 20

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

Branch: refs/heads/ignite-db-x-10884
Commit: b0cab0c54edb1347b12a953ef92802ab43fd6714
Parents: 92e5315
Author: S.Vladykin <[email protected]>
Authored: Tue Apr 26 07:32:43 2016 +0300
Committer: S.Vladykin <[email protected]>
Committed: Tue Apr 26 07:32:43 2016 +0300

----------------------------------------------------------------------
 .../processors/database/BPlusTreeSelfTest.java  | 32 ++++++++++----------
 1 file changed, 16 insertions(+), 16 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/b0cab0c5/modules/indexing/src/test/java/org/apache/ignite/internal/processors/database/BPlusTreeSelfTest.java
----------------------------------------------------------------------
diff --git 
a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/database/BPlusTreeSelfTest.java
 
b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/database/BPlusTreeSelfTest.java
index 54accf5..ce3840a 100644
--- 
a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/database/BPlusTreeSelfTest.java
+++ 
b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/database/BPlusTreeSelfTest.java
@@ -114,9 +114,9 @@ public class BPlusTreeSelfTest extends 
GridCommonAbstractTest {
     /**
      * @throws IgniteCheckedException If failed.
      */
-    public void testPutRemove_1_10_mm_1() throws IgniteCheckedException {
+    public void testPutRemove_1_20_mm_1() throws IgniteCheckedException {
         MAX_ITEMS_COUNT = 1;
-        CNT = 10;
+        CNT = 20;
         PUT_INC = -1;
         RMV_INC = -1;
 
@@ -126,9 +126,9 @@ public class BPlusTreeSelfTest extends 
GridCommonAbstractTest {
     /**
      * @throws IgniteCheckedException If failed.
      */
-    public void testPutRemove_1_10_mm_0() throws IgniteCheckedException {
+    public void testPutRemove_1_20_mm_0() throws IgniteCheckedException {
         MAX_ITEMS_COUNT = 1;
-        CNT = 10;
+        CNT = 20;
         PUT_INC = -1;
         RMV_INC = -1;
 
@@ -138,9 +138,9 @@ public class BPlusTreeSelfTest extends 
GridCommonAbstractTest {
     /**
      * @throws IgniteCheckedException If failed.
      */
-    public void testPutRemove_1_10_pm_1() throws IgniteCheckedException {
+    public void testPutRemove_1_20_pm_1() throws IgniteCheckedException {
         MAX_ITEMS_COUNT = 1;
-        CNT = 10;
+        CNT = 20;
         PUT_INC = 1;
         RMV_INC = -1;
 
@@ -150,9 +150,9 @@ public class BPlusTreeSelfTest extends 
GridCommonAbstractTest {
     /**
      * @throws IgniteCheckedException If failed.
      */
-    public void testPutRemove_1_10_pm_0() throws IgniteCheckedException {
+    public void testPutRemove_1_20_pm_0() throws IgniteCheckedException {
         MAX_ITEMS_COUNT = 1;
-        CNT = 10;
+        CNT = 20;
         PUT_INC = 1;
         RMV_INC = -1;
 
@@ -162,9 +162,9 @@ public class BPlusTreeSelfTest extends 
GridCommonAbstractTest {
     /**
      * @throws IgniteCheckedException If failed.
      */
-    public void testPutRemove_1_10_pp_1() throws IgniteCheckedException {
+    public void testPutRemove_1_20_pp_1() throws IgniteCheckedException {
         MAX_ITEMS_COUNT = 1;
-        CNT = 10;
+        CNT = 20;
         PUT_INC = 1;
         RMV_INC = 1;
 
@@ -174,9 +174,9 @@ public class BPlusTreeSelfTest extends 
GridCommonAbstractTest {
     /**
      * @throws IgniteCheckedException If failed.
      */
-    public void testPutRemove_1_10_pp_0() throws IgniteCheckedException {
+    public void testPutRemove_1_20_pp_0() throws IgniteCheckedException {
         MAX_ITEMS_COUNT = 1;
-        CNT = 10;
+        CNT = 20;
         PUT_INC = 1;
         RMV_INC = 1;
 
@@ -186,9 +186,9 @@ public class BPlusTreeSelfTest extends 
GridCommonAbstractTest {
     /**
      * @throws IgniteCheckedException If failed.
      */
-    public void testPutRemove_1_10_mp_1() throws IgniteCheckedException {
+    public void testPutRemove_1_20_mp_1() throws IgniteCheckedException {
         MAX_ITEMS_COUNT = 1;
-        CNT = 10;
+        CNT = 20;
         PUT_INC = -1;
         RMV_INC = 1;
 
@@ -198,9 +198,9 @@ public class BPlusTreeSelfTest extends 
GridCommonAbstractTest {
     /**
      * @throws IgniteCheckedException If failed.
      */
-    public void testPutRemove_1_10_mp_0() throws IgniteCheckedException {
+    public void testPutRemove_1_20_mp_0() throws IgniteCheckedException {
         MAX_ITEMS_COUNT = 1;
-        CNT = 10;
+        CNT = 20;
         PUT_INC = -1;
         RMV_INC = 1;
 

Reply via email to