In bot_test.go you can quite often find following set of commands: https://github.com/go-telegram-bot-api/telegram-bot-api/blob/5e339ed016b0c7349c092f9fc0ecdf9e18c5f963/bot_test.go#L33-L34 However, `t.Fail()` is not necessary here, because `t.Error(err)` calls `t.Fail()` already.
In bot_test.go you can quite often find following set of commands:
telegram-bot-api/bot_test.go
Lines 33 to 34 in 5e339ed
However,
t.Fail()is not necessary here, becauset.Error(err)callst.Fail()already.