From d6a03aba4e0f91529ef1cd8a23e711a8d7120457 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Sat, 30 Apr 2016 21:04:33 +0200 Subject: [PATCH] pep8 --- mis_builder/tests/test_aep.py | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/mis_builder/tests/test_aep.py b/mis_builder/tests/test_aep.py index 09a9e33c..4dceb803 100644 --- a/mis_builder/tests/test_aep.py +++ b/mis_builder/tests/test_aep.py @@ -52,15 +52,14 @@ class TestAEP(common.TransactionCase): 'journal_id': self.journal.id, 'date': fields.Date.to_string(date), 'line_ids': [(0, 0, { - 'name': '/', - 'debit': amount, - 'account_id': debit_acc.id, - }), (0, 0, { - 'name': '/', - 'credit': amount, - 'account_id': credit_acc.id, - }) - ]}) + 'name': '/', + 'debit': amount, + 'account_id': debit_acc.id, + }), (0, 0, { + 'name': '/', + 'credit': amount, + 'account_id': credit_acc.id, + })]}) move.post() return move