fix(test): 修改测试数据中的中文标签

- 将 "重大" 修改为 "重要",以更准确地对应英文标签 "serious"
- 此修改统一了中英文标签的含义,提高了测试数据的一致性和准确性
This commit is contained in:
Havoc412 2024-11-13 13:09:43 +08:00
parent 5cf79f95d9
commit 5c2536a3a7

View File

@ -46,7 +46,7 @@ func TestEncounterLevel_Insert(t *testing.T) {
t.Error(err)
}
ZH := []string{"日常", "重", "标志", "代办", "日程"}
ZH := []string{"日常", "重", "标志", "代办", "日程"}
EN := []string{"daily", "serious", "flag", "todo", "schedule"}
colorbg := []string{"#F0F0F0", "#FFD700", "#FF69B4", "#87CEFA", "#32CD32"}
colorfont := []string{"#333333", "#000000", "#FFFFFF", "#000000", "#FFFFFF"}