From 9d2b785be6a2171a4bba282241f035101de9066a Mon Sep 17 00:00:00 2001 From: Steven Date: Fri, 27 Oct 2023 23:17:17 +0800 Subject: [PATCH] chore: fix inbox test --- test/store/inbox_test.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/store/inbox_test.go b/test/store/inbox_test.go index 5c4dbc48..dc88363a 100644 --- a/test/store/inbox_test.go +++ b/test/store/inbox_test.go @@ -21,9 +21,7 @@ func TestInboxStore(t *testing.T) { ReceiverID: user.ID, Status: store.UNREAD, Message: &storepb.InboxMessage{ - Title: "title", - Content: "content", - Link: "link", + Type: storepb.InboxMessage_TYPE_MEMO_COMMENT, }, } inbox, err := ts.CreateInbox(ctx, create)