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

weihu 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 72da0b910 Update PropertiesUtilsTest.java
     new 9810cfe04 Merge pull request #3737 from harshithasudhakar/patch-20
72da0b910 is described below

commit 72da0b9101abb51c865bb78c8e8f5b9ac396f44c
Author: Harshitha Sudhakar 
<[email protected]>
AuthorDate: Fri Apr 14 13:48:10 2023 +0530

    Update PropertiesUtilsTest.java
    
    Swapped actual and expected values at lines 54, 55.
---
 .../java/org/apache/eventmesh/common/utils/PropertiesUtilsTest.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/eventmesh-common/src/test/java/org/apache/eventmesh/common/utils/PropertiesUtilsTest.java
 
b/eventmesh-common/src/test/java/org/apache/eventmesh/common/utils/PropertiesUtilsTest.java
index 73f4ee5c1..bdd23f55f 100644
--- 
a/eventmesh-common/src/test/java/org/apache/eventmesh/common/utils/PropertiesUtilsTest.java
+++ 
b/eventmesh-common/src/test/java/org/apache/eventmesh/common/utils/PropertiesUtilsTest.java
@@ -51,8 +51,8 @@ public class PropertiesUtilsTest {
         String path = configService.getRootPath();
         try {
             PropertiesUtils.loadPropertiesWhenFileExist(properties, path);
-            
Assert.assertEquals(properties.get("eventMesh.server.env").toString(), 
"env-succeed!!!");
-            
Assert.assertEquals(properties.get("eventMesh.server.idc").toString(), 
"idc-succeed!!!");
+            Assert.assertEquals("env-succeed!!!", 
properties.get("eventMesh.server.env").toString());
+            Assert.assertEquals("idc-succeed!!!", 
properties.get("eventMesh.server.idc").toString());
         } catch (Exception e) {
             Assert.fail();
         }


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

Reply via email to