You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hivemall.apache.org by my...@apache.org on 2018/11/07 09:42:15 UTC

incubator-hivemall git commit: Fixed a bug introduced in the previous commit

Repository: incubator-hivemall
Updated Branches:
  refs/heads/master 6dc6aff34 -> 0c8960a29


Fixed a bug introduced in the previous commit


Project: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/commit/0c8960a2
Tree: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/tree/0c8960a2
Diff: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/diff/0c8960a2

Branch: refs/heads/master
Commit: 0c8960a29380763e1ecb51137f43c5ea6b5a5266
Parents: 6dc6aff
Author: Makoto Yui <my...@apache.org>
Authored: Wed Nov 7 18:42:09 2018 +0900
Committer: Makoto Yui <my...@apache.org>
Committed: Wed Nov 7 18:42:09 2018 +0900

----------------------------------------------------------------------
 core/src/test/java/hivemall/mix/client/MixRequestRouterTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/0c8960a2/core/src/test/java/hivemall/mix/client/MixRequestRouterTest.java
----------------------------------------------------------------------
diff --git a/core/src/test/java/hivemall/mix/client/MixRequestRouterTest.java b/core/src/test/java/hivemall/mix/client/MixRequestRouterTest.java
index 0500166..73edb72 100644
--- a/core/src/test/java/hivemall/mix/client/MixRequestRouterTest.java
+++ b/core/src/test/java/hivemall/mix/client/MixRequestRouterTest.java
@@ -30,7 +30,7 @@ public class MixRequestRouterTest {
         MixRequestRouter router =
                 new MixRequestRouter("yahoo.co.jp:11212,google.com");
         NodeInfo[] nodes = router.getAllNodes();
-        Assert.assertEquals(3, nodes.length);
+        Assert.assertEquals(2, nodes.length);
     }
 
 }