flake8 error "E126 continuation line over-indented for hanging indent" corrected

This commit is contained in:
Gervais Naoussi 2015-12-08 13:16:36 +01:00
parent 8b52e66e1b
commit f978d2a051

View File

@ -10,8 +10,9 @@ class TestDocumentPageCreateMenu(common.TransactionCase):
"""Test page menu creation."""
menu_parent = self.env.ref('base.menu_base_partner')
menu_created = self.env['document.page.create.menu'].create({
'menu_name': 'Wiki Test menu', 'menu_parent_id': menu_parent.id})
menu_created = self.env['document.page.create.menu'].create(
{'menu_name': 'Wiki Test menu', 'menu_parent_id': menu_parent.id}
)
menu = self.env['document.page.create.menu'].search(
[('id', '=', menu_created.id)]