Skip to content

Commit 1c93b31

Browse files
committed
Fixed typo in test name
1 parent 6f510d6 commit 1c93b31

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/Unit/InlineKeyboardTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
]);
2323
});
2424

25-
it('can has multiple buttons', function () {
25+
it('can have multiple buttons', function () {
2626
$keyboard = InlineKeyboardMarkup::make()
2727
->button(InlineKeyboardButton::make()->text('Button A'))
2828
->button(InlineKeyboardButton::make()->text('Button B'))
@@ -44,7 +44,7 @@
4444
]);
4545
});
4646

47-
it('can has multiple rows', function () {
47+
it('can have multiple rows', function () {
4848
$keyboard = InlineKeyboardMarkup::make()
4949
->row([
5050
InlineKeyboardButton::make()->text('Button A'),

tests/Unit/ReplyKeyboardTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
]);
4141
});
4242

43-
it('can has multiple buttons', function () {
43+
it('can have multiple buttons', function () {
4444
$keyboard = ReplyKeyboardMarkup::make()
4545
->button(KeyboardButton::make()->text('Button A'))
4646
->button(KeyboardButton::make()->text('Button B'))
@@ -62,7 +62,7 @@
6262
]);
6363
});
6464

65-
it('can has multiple rows', function () {
65+
it('can have multiple rows', function () {
6666
$keyboard = ReplyKeyboardMarkup::make()
6767
->row([
6868
KeyboardButton::make()->text('Button A'),

0 commit comments

Comments
 (0)