@@ -87,7 +87,7 @@ func TestHandlers_OnMessageReactionAdd(t *testing.T) {
8787 []requestTest {
8888 {method : "GET" , host : "discord.com" , uri : "/api/v9/channels/channel-123/messages?limit=100" },
8989 {method : "POST" , host : "discord.com" , uri : "/api/v9/channels/channel-123/messages" ,
90- body : `{"embeds":[{"type":"rich","title":"my title 1"}],"tts":false,"components":null}` },
90+ body : `{"embeds":[{"type":"rich","title":"my title 1"}],"tts":false,"components":null,"sticker_ids":null }` },
9191 {method : "PUT" , host : "discord.com" , uri : "/api/v9/channels/channel-123/messages/123/reactions/my-emoji-1:emoji-123/@me" },
9292 {method : "PUT" , host : "discord.com" , uri : "/api/v9/guilds/guild-123/members/user-id-456/roles/role-123" },
9393 },
@@ -277,7 +277,7 @@ func TestHandlers_OnMessageReactionAdd_Errors(t *testing.T) {
277277 []requestTest {
278278 {method : "GET" , host : "discord.com" , uri : "/api/v9/channels/channel-123/messages?limit=100" },
279279 {method : "POST" , host : "discord.com" , uri : "/api/v9/channels/channel-123/messages" ,
280- body : `{"embeds":[{"type":"rich","title":"my title 1"}],"tts":false,"components":null}` },
280+ body : `{"embeds":[{"type":"rich","title":"my title 1"}],"tts":false,"components":null,"sticker_ids":null }` },
281281 {method : "PUT" , host : "discord.com" , uri : "/api/v9/channels/channel-123/messages/123/reactions/my-emoji-1:emoji-123/@me" },
282282 {method : "PUT" , host : "discord.com" , uri : "/api/v9/guilds/guild-123/members/user-id-456/roles/role-123" },
283283 },
@@ -377,7 +377,7 @@ func TestHandlers_OnMessageReactionRemove(t *testing.T) {
377377 []requestTest {
378378 {method : "GET" , host : "discord.com" , uri : "/api/v9/channels/channel-123/messages?limit=100" },
379379 {method : "POST" , host : "discord.com" , uri : "/api/v9/channels/channel-123/messages" ,
380- body : `{"embeds":[{"type":"rich","title":"my title 1"}],"tts":false,"components":null}` },
380+ body : `{"embeds":[{"type":"rich","title":"my title 1"}],"tts":false,"components":null,"sticker_ids":null }` },
381381 {method : "PUT" , host : "discord.com" , uri : "/api/v9/channels/channel-123/messages/123/reactions/my-emoji-1:emoji-123/@me" },
382382 {method : "DELETE" , host : "discord.com" , uri : "/api/v9/guilds/guild-123/members/user-id-789/roles/role-123" },
383383 },
@@ -566,7 +566,7 @@ func TestHandlers_OnMessageReactionRemove_Errors(t *testing.T) {
566566 []requestTest {
567567 {method : "GET" , host : "discord.com" , uri : "/api/v9/channels/channel-123/messages?limit=100" },
568568 {method : "POST" , host : "discord.com" , uri : "/api/v9/channels/channel-123/messages" ,
569- body : `{"embeds":[{"type":"rich","title":"my title 1"}],"tts":false,"components":null}` },
569+ body : `{"embeds":[{"type":"rich","title":"my title 1"}],"tts":false,"components":null,"sticker_ids":null }` },
570570 {method : "PUT" , host : "discord.com" , uri : "/api/v9/channels/channel-123/messages/123/reactions/my-emoji-1:emoji-123/@me" },
571571 {method : "DELETE" , host : "discord.com" , uri : "/api/v9/guilds/guild-123/members/user-id-789/roles/role-123" },
572572 },
0 commit comments