mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Merge e630c2a85e into ab32296d07
This commit is contained in:
commit
fb970a4f1b
3 changed files with 85 additions and 16 deletions
|
|
@ -193,11 +193,17 @@ class TestKeyboardBuilder:
|
|||
[
|
||||
[0, False, [], []],
|
||||
[0, False, [2], []],
|
||||
[0, False, [-2], []],
|
||||
[1, False, [2], [1]],
|
||||
[1, False, [-2], [1]],
|
||||
[3, False, [2], [2, 1]],
|
||||
[3, False, [-2], [1, 2]],
|
||||
[10, False, [3, 2, 1], [3, 2, 1, 1, 1, 1, 1]],
|
||||
[10, False, [3, 2, -1], [3, 2, 2, 2, 1]],
|
||||
[10, False, [3, -2, 1], [3, 1, 1, 1, 1, 1, 2]],
|
||||
[12, False, [], [10, 2]],
|
||||
[12, True, [3, 2, 1], [3, 2, 1, 3, 2, 1]],
|
||||
[12, True, [3, -1, -4], [3, 3, 1, 1, 4]],
|
||||
],
|
||||
)
|
||||
def test_adjust(self, count, repeat, sizes, shape):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue