|
@@ -281,7 +281,7 @@ func TestMessaggeService_SaveAutoReplyMsg(t *testing.T) {
|
|
|
for _, tt := range tests {
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
m := &MessaggeService{}
|
|
|
- if got := m.SaveAutoReplyMsg(tt.args.userType, tt.args.entId, tt.args.entUserId, tt.args.userId, tt.args.content, tt.args.appId, tt.args.nowFormat); got != tt.want {
|
|
|
+ if got, _ := m.SaveAutoReplyMsg(tt.args.userType, tt.args.entId, tt.args.entUserId, tt.args.userId, tt.args.content, tt.args.appId, tt.args.nowFormat); got != tt.want {
|
|
|
t.Errorf("SaveAutoReplyMsg() = %v, want %v", got, tt.want)
|
|
|
}
|
|
|
})
|