From d2dcdb389525112b87ad717c5cc09aa6f3db3a66 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=A9rome=20Perrin?= <jerome@nexedi.com>
Date: Wed, 20 Aug 2008 12:35:47 +0000
Subject: [PATCH] wrap long lines

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@23058 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/ERP5/tests/testAccounting.py | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/product/ERP5/tests/testAccounting.py b/product/ERP5/tests/testAccounting.py
index 5b514f34f6..ebd9f3d559 100644
--- a/product/ERP5/tests/testAccounting.py
+++ b/product/ERP5/tests/testAccounting.py
@@ -3328,7 +3328,8 @@ class TestAccountingTransactionTemplate(AccountingTestCase):
     get_transaction().commit()
     self.tic()
 
-    document = self.accounting_module.newContent(portal_type='Accounting Transaction')
+    document = self.accounting_module.newContent(
+                    portal_type='Accounting Transaction')
     document.edit(title='My Accounting Transaction')
     document.Base_makeTemplateFromDocument(form_id=None)
 
@@ -3348,7 +3349,8 @@ class TestAccountingTransactionTemplate(AccountingTestCase):
 
     template = preference.objectValues()[0]
 
-    cp = preference.manage_copyObjects(ids=[template.getId()], REQUEST=None, RESPONSE=None)
+    cp = preference.manage_copyObjects(ids=[template.getId()],
+                                       REQUEST=None, RESPONSE=None)
     new_document_list = self.accounting_module.manage_pasteObjects(cp)
     new_document_id = new_document_list[0]['new_id']
     new_document = self.accounting_module[new_document_id]
-- 
2.30.9