Fix bad merge (#35079)

This commit is contained in:
Christopher Poile 2026-01-27 15:50:38 -05:00 committed by GitHub
parent ea9333b2e8
commit eeaf9c8e3e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -229,7 +229,7 @@ func TestPostActionResponseSizeLimit(t *testing.T) {
},
}
post, err := th.App.CreatePostAsUser(th.Context, &interactivePost, "", true)
post, _, err := th.App.CreatePostAsUser(th.Context, &interactivePost, "", true)
require.Nil(t, err)
attachments, ok := post.GetProp(model.PostPropsAttachments).([]*model.SlackAttachment)
require.True(t, ok)
@ -272,7 +272,7 @@ func TestPostActionResponseSizeLimit(t *testing.T) {
},
}
post, err := th.App.CreatePostAsUser(th.Context, &interactivePost, "", true)
post, _, err := th.App.CreatePostAsUser(th.Context, &interactivePost, "", true)
require.Nil(t, err)
attachments, ok := post.GetProp(model.PostPropsAttachments).([]*model.SlackAttachment)
require.True(t, ok)