From 46e5c7a3d000b50cea743af94d7b274be5f29ddf Mon Sep 17 00:00:00 2001 From: birdi Date: Thu, 18 Jul 2019 22:57:59 +0300 Subject: [PATCH] Add ignore_case to equals test --- tests/test_filters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_filters.py b/tests/test_filters.py index a2095306..153c31f6 100644 --- a/tests/test_filters.py +++ b/tests/test_filters.py @@ -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)