mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-08 17:13:56 +00:00
Add ignore_case to equals test
This commit is contained in:
parent
0c9c837652
commit
46e5c7a3d0
1 changed files with 1 additions and 1 deletions
|
|
@ -159,7 +159,7 @@ class TestTextFilter:
|
|||
('EXample_string', 'not_example_string', False),
|
||||
])
|
||||
async def test_equals_string(self, test_filter_text, test_text, ignore_case):
|
||||
test_filter = Text(equals=test_filter_text)
|
||||
test_filter = Text(equals=test_filter_text, ignore_case=ignore_case)
|
||||
|
||||
async def check(obj):
|
||||
result = await test_filter.check(obj)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue