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

zrlw pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/dubbo-integration-cases.git


The following commit(s) were added to refs/heads/main by this push:
     new 010dc678 Add failure message to the average response time assertion of 
dubbo-samples-test-13580 (#67)
010dc678 is described below

commit 010dc6787a900d75d24446dc5d8389f51e07ab71
Author: zrlw <[email protected]>
AuthorDate: Tue Jun 24 15:39:25 2025 +0800

    Add failure message to the average response time assertion of 
dubbo-samples-test-13580 (#67)
---
 .../test/java/org/apache/dubbo/samples/client/GreetingServiceIT.java   | 3 ++-
 .../META-INF/services/org.apache.dubbo.common.serialize.Serialization  | 1 -
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/99-integration/dubbo-samples-test-13580/src/test/java/org/apache/dubbo/samples/client/GreetingServiceIT.java
 
b/99-integration/dubbo-samples-test-13580/src/test/java/org/apache/dubbo/samples/client/GreetingServiceIT.java
index bbc106e6..6fd75ccb 100644
--- 
a/99-integration/dubbo-samples-test-13580/src/test/java/org/apache/dubbo/samples/client/GreetingServiceIT.java
+++ 
b/99-integration/dubbo-samples-test-13580/src/test/java/org/apache/dubbo/samples/client/GreetingServiceIT.java
@@ -82,7 +82,8 @@ public class GreetingServiceIT {
                     }
                 }
             }
-            Assertions.assertEquals(2, data.size());
+            // TODO sometimes there are no dubbo_consumer_rt_milliseconds_avg 
in the result.
+            Assertions.assertEquals(2, data.size(), "FAIL result: " + result);
             Assertions.assertTrue(Double.parseDouble(data.get("echo1")) > 0);
             Assertions.assertTrue(Double.parseDouble(data.get("echo2")) > 0);
         }
diff --git 
a/99-integration/dubbo-samples-test-13580/src/test/resources/META-INF/services/org.apache.dubbo.common.serialize.Serialization
 
b/99-integration/dubbo-samples-test-13580/src/test/resources/META-INF/services/org.apache.dubbo.common.serialize.Serialization
deleted file mode 100644
index c7a9814c..00000000
--- 
a/99-integration/dubbo-samples-test-13580/src/test/resources/META-INF/services/org.apache.dubbo.common.serialize.Serialization
+++ /dev/null
@@ -1 +0,0 @@
-set=org.apache.dubbo.samples.provider.SerializationSetWrapper

Reply via email to