You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by zi...@apache.org on 2022/04/10 13:09:55 UTC

[dolphinscheduler] branch dev updated: Update inappropriate characters (#9413)

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

zihaoxiang pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new fea9ce391b Update inappropriate characters (#9413)
fea9ce391b is described below

commit fea9ce391b778f554d0404ea46bc6b357625508d
Author: BaoLiang <29...@users.noreply.github.com>
AuthorDate: Sun Apr 10 21:09:48 2022 +0800

    Update inappropriate characters (#9413)
---
 .../dolphinscheduler/api/controller/AlertGroupControllerTest.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/controller/AlertGroupControllerTest.java b/dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/controller/AlertGroupControllerTest.java
index 6b38bfaf1a..a40ec4996d 100644
--- a/dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/controller/AlertGroupControllerTest.java
+++ b/dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/controller/AlertGroupControllerTest.java
@@ -75,7 +75,7 @@ public class AlertGroupControllerTest extends AbstractControllerTest {
         MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>();
         paramsMap.add("groupName", defaultTestAlertGroupName);
         paramsMap.add("groupType", "email");
-        paramsMap.add("description", "cxc junit 测试告警描述");
+        paramsMap.add("description", "cxc junit test alert description");
         paramsMap.add("alertInstanceIds", "");
         MvcResult mvcResult = mockMvc.perform(post("/alert-groups")
                 .header("sessionId", sessionId)