removed redundant t.Fail() from bot_test.go
jump to
@@ -28,7 +28,6 @@ bot.Debug = true
if err != nil { t.Error(err) - t.Fail() } return bot, err@@ -39,7 +38,6 @@ _, err := NewBotAPI("")
if err == nil { t.Error(err) - t.Fail() } }@@ -52,7 +50,6 @@ _, err := bot.GetUpdates(u)
if err != nil { t.Error(err) - t.Fail() } }@@ -65,7 +62,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -78,7 +74,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -90,7 +85,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -103,7 +97,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -119,7 +112,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -135,7 +127,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -149,7 +140,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -162,7 +152,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -174,7 +163,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -186,7 +174,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -203,7 +190,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -219,7 +205,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -232,7 +217,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -245,7 +229,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -256,7 +239,6 @@ contact := NewContact(ChatID, "5551234567", "Test")
if _, err := bot.Send(contact); err != nil { t.Error(err) - t.Fail() } }@@ -267,7 +249,6 @@ _, err := bot.Send(NewLocation(ChatID, 40, 40))
if err != nil { t.Error(err) - t.Fail() } }@@ -278,7 +259,6 @@ venue := NewVenue(ChatID, "A Test Location", "123 Test Street", 40, 40)
if _, err := bot.Send(venue); err != nil { t.Error(err) - t.Fail() } }@@ -293,7 +273,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -308,7 +287,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -322,7 +300,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -336,7 +313,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -349,7 +325,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -362,7 +337,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -378,7 +352,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -395,7 +368,6 @@ _, err := bot.Send(msg)
if err != nil { t.Error(err) - t.Fail() } }@@ -410,7 +382,6 @@ _, err := bot.GetFile(file)
if err != nil { t.Error(err) - t.Fail() } }@@ -421,7 +392,6 @@ _, err := bot.Request(NewChatAction(ChatID, ChatTyping))
if err != nil { t.Error(err) - t.Fail() } }@@ -431,7 +401,6 @@
msg, err := bot.Send(NewMessage(ChatID, "Testing editing.")) if err != nil { t.Error(err) - t.Fail() } edit := EditMessageTextConfig{@@ -445,7 +414,6 @@
_, err = bot.Send(edit) if err != nil { t.Error(err) - t.Fail() } }@@ -455,7 +423,6 @@
_, err := bot.GetUserProfilePhotos(NewUserProfilePhotos(ChatID)) if err != nil { t.Error(err) - t.Fail() } }@@ -470,7 +437,6 @@ wh := NewWebhookWithCert("https://example.com/tgbotapi-test/"+bot.Token, "tests/cert.pem")
_, err := bot.Request(wh) if err != nil { t.Error(err) - t.Fail() } _, err = bot.GetWebhookInfo()@@ -493,7 +459,6 @@ wh := NewWebhook("https://example.com/tgbotapi-test/" + bot.Token)
_, err := bot.Request(wh) if err != nil { t.Error(err) - t.Fail() } info, err := bot.GetWebhookInfo()@@ -648,7 +613,6 @@ _, err := bot.Request(deleteMessageConfig)
if err != nil { t.Error(err) - t.Fail() } }@@ -668,7 +632,6 @@ _, err := bot.Request(pinChatMessageConfig)
if err != nil { t.Error(err) - t.Fail() } }@@ -688,7 +651,6 @@ }
if _, err := bot.Request(pinChatMessageConfig); err != nil { t.Error(err) - t.Fail() } unpinChatMessageConfig := UnpinChatMessageConfig{@@ -697,7 +659,6 @@ }
if _, err := bot.Request(unpinChatMessageConfig); err != nil { t.Error(err) - t.Fail() } }@@ -709,28 +670,23 @@
msg, err := bot.Send(poll) if err != nil { t.Error(err) - t.Fail() } result, err := bot.StopPoll(NewStopPoll(SupergroupChatID, msg.MessageID)) if err != nil { t.Error(err) - t.Fail() } if result.Question != "Are polls working?" { t.Error("Poll question did not match") - t.Fail() } if !result.IsClosed { t.Error("Poll did not end") - t.Fail() } if result.Options[0].Text != "Yes" || result.Options[0].VoterCount != 0 || result.Options[1].Text != "No" || result.Options[1].VoterCount != 0 { t.Error("Poll options were incorrect") - t.Fail() } }