diff --git a/bot_test.go b/bot_test.go index 67788b5..16354cf 100644 --- a/bot_test.go +++ b/bot_test.go @@ -49,7 +49,6 @@ func TestGetUpdates(t *testing.T) { _, err := bot.GetUpdates(u) if err != nil { - t.Log(err.Error()) t.Fail() } } @@ -274,9 +273,7 @@ func TestSendWithNewSticker(t *testing.T) { msg := tgbotapi.NewStickerUpload(ChatID, "tests/image.jpg") - resp, err := bot.Send(msg) - - t.Log(resp) + _, err := bot.Send(msg) if err != nil { t.Fail()