all repos — telegram-bot-api @ 6fcca60571ae7329d7db129d201a297e8ce033b3

Golang bindings for the Telegram Bot API

Fix old package import
zhuharev unybigk@gmail.com
Sat, 15 Feb 2020 16:19:31 +0300
commit

6fcca60571ae7329d7db129d201a297e8ce033b3

parent

b40fac92022dc6887be0dfb7145c86a5b8a3f258

1 files changed, 10 insertions(+), 10 deletions(-)

jump to
M types_test.gotypes_test.go

@@ -190,7 +190,7 @@ }

} func TestMessageEntityIsMention(t *testing.T) { - entity := tgbotapi.MessageEntity{Type: "mention"} + entity := MessageEntity{Type: "mention"} if !entity.IsMention() { t.Fail()

@@ -198,7 +198,7 @@ }

} func TestMessageEntityIsHashtag(t *testing.T) { - entity := tgbotapi.MessageEntity{Type: "hashtag"} + entity := MessageEntity{Type: "hashtag"} if !entity.IsHashtag() { t.Fail()

@@ -206,7 +206,7 @@ }

} func TestMessageEntityIsBotCommand(t *testing.T) { - entity := tgbotapi.MessageEntity{Type: "bot_command"} + entity := MessageEntity{Type: "bot_command"} if !entity.IsCommand() { t.Fail()

@@ -214,7 +214,7 @@ }

} func TestMessageEntityIsUrl(t *testing.T) { - entity := tgbotapi.MessageEntity{Type: "url"} + entity := MessageEntity{Type: "url"} if !entity.IsUrl() { t.Fail()

@@ -222,7 +222,7 @@ }

} func TestMessageEntityIsEmail(t *testing.T) { - entity := tgbotapi.MessageEntity{Type: "email"} + entity := MessageEntity{Type: "email"} if !entity.IsEmail() { t.Fail()

@@ -230,7 +230,7 @@ }

} func TestMessageEntityIsBold(t *testing.T) { - entity := tgbotapi.MessageEntity{Type: "bold"} + entity := MessageEntity{Type: "bold"} if !entity.IsBold() { t.Fail()

@@ -238,7 +238,7 @@ }

} func TestMessageEntityIsItalic(t *testing.T) { - entity := tgbotapi.MessageEntity{Type: "italic"} + entity := MessageEntity{Type: "italic"} if !entity.IsItalic() { t.Fail()

@@ -246,7 +246,7 @@ }

} func TestMessageEntityIsCode(t *testing.T) { - entity := tgbotapi.MessageEntity{Type: "code"} + entity := MessageEntity{Type: "code"} if !entity.IsCode() { t.Fail()

@@ -254,7 +254,7 @@ }

} func TestMessageEntityIsPre(t *testing.T) { - entity := tgbotapi.MessageEntity{Type: "pre"} + entity := MessageEntity{Type: "pre"} if !entity.IsPre() { t.Fail()

@@ -262,7 +262,7 @@ }

} func TestMessageEntityIsTextLink(t *testing.T) { - entity := tgbotapi.MessageEntity{Type: "text_link"} + entity := MessageEntity{Type: "text_link"} if !entity.IsTextLink() { t.Fail()