Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pengrad committed Nov 2, 2024
1 parent 77f7039 commit 935af7b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ public void sendMessage() {
.parseMode(ParseMode.HTML)
.disableWebPagePreview(false)
.protectContent(true)
.allowPaidBroadcast(true)
.allowPaidBroadcast(false)
.replyMarkup(new ReplyKeyboardMarkup(
new KeyboardButton("contact").requestContact(true),
new KeyboardButton("location").requestLocation(true),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ public static void checkTextMessage(Message message) {
assertNull(message.connectedWebsite());
assertFalse(message.isTopicMessage());
assertNull(message.isAutomaticForward());
assertNull(message.replyToMessage());
assertNull(message.externalReply());
assertNull(message.quote());
assertNull(message.replyToStory());
Expand Down

0 comments on commit 935af7b

Please sign in to comment.