1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-26 11:38:09 +00:00

fix texts of bot actions

This commit is contained in:
InsanusMokrassar 2021-11-08 19:07:02 +06:00
parent a76a7ae630
commit 9ed7ded967

View File

@ -27,6 +27,7 @@ class BotActionTests {
FindLocationAction -> example.botAction.actionName FindLocationAction -> example.botAction.actionName
RecordVideoNoteAction -> example.botAction.actionName RecordVideoNoteAction -> example.botAction.actionName
UploadVideoNoteAction -> example.botAction.actionName UploadVideoNoteAction -> example.botAction.actionName
ChooseStickerAction -> example.botAction.actionName
is CustomBotAction -> example.botAction.actionName is CustomBotAction -> example.botAction.actionName
} }
) )
@ -56,7 +57,8 @@ class BotActionTests {
UploadDocumentAction.example(), UploadDocumentAction.example(),
FindLocationAction.example(), FindLocationAction.example(),
RecordVideoNoteAction.example(), RecordVideoNoteAction.example(),
UploadVideoNoteAction.example() UploadVideoNoteAction.example(),
ChooseStickerAction.example(),
).forEach { ).forEach {
checkBotActionSerializeDeserialize(it) checkBotActionSerializeDeserialize(it)
} }