Skip to content

Commit

Permalink
Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
muflone committed Mar 19, 2023
1 parent 893a168 commit 083e001
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_contacts.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def test_06_search_with_filters(self) -> None:
"""
Search some rows using filters
"""
# Filters by name and excluding an explicit ID
# Filters by active and exclude an explicit name
filters = [BooleanOperator.AND,
Filter(field='active',
compare_type=CompareType.EQUAL,
Expand Down Expand Up @@ -231,7 +231,7 @@ def test_12_filter(self) -> None:
"""
Find multiple rows using some filters
"""
# Filters by name and excluding an explicit ID
# Filters by active and exclude an explicit name
filters = [BooleanOperator.AND,
Filter(field='active',
compare_type=CompareType.EQUAL,
Expand All @@ -252,7 +252,7 @@ def test_13_filter_with_order(self) -> None:
"""
Find multiple rows using some filters and order
"""
# Filters by name and excluding an explicit ID
# Filters by active and exclude an explicit name
filters = [BooleanOperator.AND,
Filter(field='active',
compare_type=CompareType.EQUAL,
Expand Down

0 comments on commit 083e001

Please sign in to comment.