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

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


The following commit(s) were added to refs/heads/master by this push:
     new 42db0655a [ISSUE #4101]Correct sequence for expected and actual 
arguments in assertEquals (#4189)
42db0655a is described below

commit 42db0655acf9ea2764575c3a73488ecd859fc415
Author: ruhshan <[email protected]>
AuthorDate: Mon Jul 10 14:57:55 2023 +0600

    [ISSUE #4101]Correct sequence for expected and actual arguments in 
assertEquals (#4189)
---
 .../eventmesh/storage/knative/config/ClientConfigurationTest.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/eventmesh-storage-plugin/eventmesh-storage-knative/src/test/java/org/apache/eventmesh/storage/knative/config/ClientConfigurationTest.java
 
b/eventmesh-storage-plugin/eventmesh-storage-knative/src/test/java/org/apache/eventmesh/storage/knative/config/ClientConfigurationTest.java
index 9ff668a1c..334b9b4de 100644
--- 
a/eventmesh-storage-plugin/eventmesh-storage-knative/src/test/java/org/apache/eventmesh/storage/knative/config/ClientConfigurationTest.java
+++ 
b/eventmesh-storage-plugin/eventmesh-storage-knative/src/test/java/org/apache/eventmesh/storage/knative/config/ClientConfigurationTest.java
@@ -45,7 +45,7 @@ public class ClientConfigurationTest {
     }
 
     private void assertConfig(ClientConfiguration config) {
-        Assert.assertEquals(config.getEmurl(), "127.0.0.1");
-        Assert.assertEquals(config.getServiceAddr(), 
"cloudevents-player.default.127.0.0.1.sslip.io");
+        Assert.assertEquals("127.0.0.1", config.getEmurl());
+        Assert.assertEquals("cloudevents-player.default.127.0.0.1.sslip.io", 
config.getServiceAddr());
     }
 }
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to