Skip to content

Commit

Permalink
Fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
gbastien committed Sep 6, 2018
1 parent 2fa3b01 commit ddeeac3
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/plone/api/tests/test_content.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,11 +384,13 @@ def test_create_at_collection(self):
type='Collection',
title='Mandelbrot set',
description='Image gallery of a zoom sequence',
query=[{
'i': 'Type',
'o': 'plone.app.querystring.operation.string.is',
'v': ['Image'],
}],
query=[
{
'i': 'Type',
'o': 'plone.app.querystring.operation.string.is',
'v': ['Image'],
},
],
)
self.assertEqual(collection.Title(), 'Mandelbrot set')

Expand Down

0 comments on commit ddeeac3

Please sign in to comment.