Small tests fix
parent
653939995c
commit
f8a3ac11b2
|
@ -49,7 +49,6 @@ func TestGetUpdates(t *testing.T) {
|
||||||
_, err := bot.GetUpdates(u)
|
_, err := bot.GetUpdates(u)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Log(err.Error())
|
|
||||||
t.Fail()
|
t.Fail()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -274,9 +273,7 @@ func TestSendWithNewSticker(t *testing.T) {
|
||||||
|
|
||||||
msg := tgbotapi.NewStickerUpload(ChatID, "tests/image.jpg")
|
msg := tgbotapi.NewStickerUpload(ChatID, "tests/image.jpg")
|
||||||
|
|
||||||
resp, err := bot.Send(msg)
|
_, err := bot.Send(msg)
|
||||||
|
|
||||||
t.Log(resp)
|
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fail()
|
t.Fail()
|
||||||
|
|
Loading…
Reference in New Issue