You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by al...@apache.org on 2021/09/08 06:04:17 UTC

[dubbo] branch master updated: fix random assertions (#8702)

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

albumenj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo.git


The following commit(s) were added to refs/heads/master by this push:
     new abb2109  fix random assertions (#8702)
abb2109 is described below

commit abb210985c4e9ce23844bb2c083edf456d556912
Author: zrlw <zr...@sina.com>
AuthorDate: Wed Sep 8 14:04:08 2021 +0800

    fix random assertions (#8702)
---
 .../apache/dubbo/rpc/cluster/support/AbstractClusterInvokerTest.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dubbo-cluster/src/test/java/org/apache/dubbo/rpc/cluster/support/AbstractClusterInvokerTest.java b/dubbo-cluster/src/test/java/org/apache/dubbo/rpc/cluster/support/AbstractClusterInvokerTest.java
index 33e863b..c99a7c7 100644
--- a/dubbo-cluster/src/test/java/org/apache/dubbo/rpc/cluster/support/AbstractClusterInvokerTest.java
+++ b/dubbo-cluster/src/test/java/org/apache/dubbo/rpc/cluster/support/AbstractClusterInvokerTest.java
@@ -358,7 +358,7 @@ public class AbstractClusterInvokerTest {
         int min = 1000, max = 5000;
         Double d = (Math.random() * (max - min + 1) + min);
         int runs = d.intValue();
-        Assertions.assertTrue(runs > min);
+        Assertions.assertTrue(runs >= min);
         LoadBalance lb = ExtensionLoader.getExtensionLoader(LoadBalance.class).getExtension(lbname);
         initlistsize5();
         for (int i = 0; i < runs; i++) {