Add ignore_case to equals test

This commit is contained in:
birdi 2019-07-18 22:57:59 +03:00
parent 0c9c837652
commit 46e5c7a3d0

View file

@ -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)