Skip to content

Commit

Permalink
#342 fixed flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
d.choban committed Feb 21, 2019
1 parent 8ba6e1b commit 47be56c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_layout_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def test_layout_example_4(layout):

assert layout[0]['fieldset']['title'] == 'fieldset'
assert layout[0]['fieldset']['description'] is None
assert layout[0]['fieldset']['collapsible'] is 'closed'
assert layout[0]['fieldset']['collapsible'] == 'closed'
assert layout[0]['rows'][0]['name'] == 'title'
assert layout[0]['rows'][0]['column'] is None
assert layout[0]['rows'][1]['name'] == 'title'
Expand All @@ -121,6 +121,6 @@ def test_layout_example_4(layout):

assert layout[2]['fieldset']['title'] == 'fieldset3'
assert layout[2]['fieldset']['description'] is None
assert layout[2]['fieldset']['collapsible'] is 'open'
assert layout[2]['fieldset']['collapsible'] == 'open'
assert layout[2]['rows'][0]['name'] == 'published'
assert layout[2]['rows'][0]['column'] is None

0 comments on commit 47be56c

Please sign in to comment.