all repos — telegram-bot-api @ b52a9399c92a1a24fc855d079b382aab6ec7884d

Golang bindings for the Telegram Bot API

Fix Imgur issue.
Syfaro syfaro@huefox.com
Thu, 05 Nov 2020 13:58:19 -0500
commit

b52a9399c92a1a24fc855d079b382aab6ec7884d

parent

e6e2a9f3ef2b66d3edaa3719146477442c65f97e

1 files changed, 3 insertions(+), 4 deletions(-)

jump to
M bot_test.gobot_test.go

@@ -526,9 +526,8 @@ func TestSendWithMediaGroup(t *testing.T) {

bot, _ := getBot(t) cfg := NewMediaGroup(ChatID, []interface{}{ - NewInputMediaPhoto("https://i.imgur.com/unQLJIb.jpg"), - NewInputMediaPhoto("https://i.imgur.com/J5qweNZ.jpg"), - NewInputMediaVideo("https://i.imgur.com/F6RmI24.mp4"), + NewInputMediaPhoto("https://github.com/go-telegram-bot-api/telegram-bot-api/raw/0a3a1c8716c4cd8d26a262af9f12dcbab7f3f28c/tests/image.jpg"), + NewInputMediaVideo("https://github.com/go-telegram-bot-api/telegram-bot-api/raw/0a3a1c8716c4cd8d26a262af9f12dcbab7f3f28c/tests/video.mp4"), }) messages, err := bot.SendMediaGroup(cfg)

@@ -540,7 +539,7 @@ if messages == nil {

t.Error() } - if len(messages) != 3 { + if len(messages) != 2 { t.Error() } }