Skip to content

Commit

Permalink
fix flake8 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
thet committed Mar 8, 2021
1 parent 9a80f4c commit b1f7284
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/plone/api/tests/test_content.py
Expand Up @@ -1064,7 +1064,7 @@ def test_find_interface_dict__include_not_query(self):
brains = api.content.find(
object_provides={
'query': IContentish.__identifier__,
'not': INavigationRoot.__identifier__
'not': INavigationRoot.__identifier__,
},
)

Expand All @@ -1085,12 +1085,12 @@ def test_find_interface_dict__all_options(self):
parser(
{
'query': [IContentish, INavigationRoot.__identifier__],
'operator': 'and'
}
'operator': 'and',
},
),
{
'query': [IContentish.__identifier__, INavigationRoot.__identifier__],
'operator': 'and'
'operator': 'and',
},
)

Expand Down

0 comments on commit b1f7284

Please sign in to comment.