You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by as...@apache.org on 2021/02/04 10:23:13 UTC

[ignite-3] branch ignite-13885 updated: IGNITE-13885 Fixing tests wip 4.

This is an automated email from the ASF dual-hosted git repository.

ascherbakov pushed a commit to branch ignite-13885
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/ignite-13885 by this push:
     new 3fe4341  IGNITE-13885 Fixing tests wip 4.
3fe4341 is described below

commit 3fe43416279f48e6b42c295ab38aadd70ec43f0a
Author: Alexey Scherbakov <al...@gmail.com>
AuthorDate: Thu Feb 4 13:23:00 2021 +0300

    IGNITE-13885 Fixing tests wip 4.
---
 .../sofa/jraft/rpc/impl/cli/AddLearnersRequestProcessorTest.java      | 4 ++--
 .../sofa/jraft/rpc/impl/cli/ResetLearnersRequestProcessorTest.java    | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/raft/src/test/java/com/alipay/sofa/jraft/rpc/impl/cli/AddLearnersRequestProcessorTest.java b/modules/raft/src/test/java/com/alipay/sofa/jraft/rpc/impl/cli/AddLearnersRequestProcessorTest.java
index 502e5f6..6a6c2f5 100644
--- a/modules/raft/src/test/java/com/alipay/sofa/jraft/rpc/impl/cli/AddLearnersRequestProcessorTest.java
+++ b/modules/raft/src/test/java/com/alipay/sofa/jraft/rpc/impl/cli/AddLearnersRequestProcessorTest.java
@@ -40,8 +40,8 @@ public class AddLearnersRequestProcessorTest extends AbstractCliRequestProcessor
             setGroupId(groupId). //
             setLeaderId(peerId.toString()). //
             addLearners("learner:8082").
-            addLearners("learner:8182").
-            addLearners("learner:8183").build();
+            addLearners("test:8182").
+            addLearners("test:8183").build();
     }
 
     @Override
diff --git a/modules/raft/src/test/java/com/alipay/sofa/jraft/rpc/impl/cli/ResetLearnersRequestProcessorTest.java b/modules/raft/src/test/java/com/alipay/sofa/jraft/rpc/impl/cli/ResetLearnersRequestProcessorTest.java
index 292a6f7..65720dc 100644
--- a/modules/raft/src/test/java/com/alipay/sofa/jraft/rpc/impl/cli/ResetLearnersRequestProcessorTest.java
+++ b/modules/raft/src/test/java/com/alipay/sofa/jraft/rpc/impl/cli/ResetLearnersRequestProcessorTest.java
@@ -40,8 +40,8 @@ public class ResetLearnersRequestProcessorTest extends AbstractCliRequestProcess
             setGroupId(groupId). //
             setLeaderId(peerId.toString()). //
             addLearners("learner:8082").
-            addLearners("learner:8182").
-            addLearners("learner:8183").build();
+            addLearners("test:8182").
+            addLearners("test:8183").build();
     }
 
     @Override