From e5f244cb50592be6c40b737c87f74560d8ecebed Mon Sep 17 00:00:00 2001 From: Steven Date: Thu, 8 Feb 2024 11:58:23 +0800 Subject: [PATCH] chore: fix tests --- test/store/reaction_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/store/reaction_test.go b/test/store/reaction_test.go index ceac828d3..3e3b1e2f5 100644 --- a/test/store/reaction_test.go +++ b/test/store/reaction_test.go @@ -18,7 +18,7 @@ func TestReactionStore(t *testing.T) { require.NoError(t, err) contentID := "test_content_id" - reaction, err := ts.CreateReaction(ctx, &storepb.Reaction{ + reaction, err := ts.UpsertReaction(ctx, &storepb.Reaction{ CreatorId: user.ID, ContentId: contentID, ReactionType: storepb.Reaction_HEART,