mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
Fix bad merge (#35079)
This commit is contained in:
parent
ea9333b2e8
commit
eeaf9c8e3e
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue