Commit 7d17721d authored by Jérome Perrin's avatar Jérome Perrin

remove LOGs


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@26609 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent adeb2b00
...@@ -33,7 +33,6 @@ from Testing import ZopeTestCase ...@@ -33,7 +33,6 @@ from Testing import ZopeTestCase
from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase
from Products.ERP5Type.Utils import cartesianProduct from Products.ERP5Type.Utils import cartesianProduct
from AccessControl.SecurityManagement import newSecurityManager from AccessControl.SecurityManagement import newSecurityManager
from zLOG import LOG
try: try:
from transaction import get as get_transaction from transaction import get as get_transaction
...@@ -228,7 +227,6 @@ class TestXMLMatrix(ERP5TypeTestCase): ...@@ -228,7 +227,6 @@ class TestXMLMatrix(ERP5TypeTestCase):
get_transaction().commit() get_transaction().commit()
self.assertEqual(matrix.getCellRange(**kwd), cell_range) self.assertEqual(matrix.getCellRange(**kwd), cell_range)
next_cell_id_list = map(lambda x: x.getId(),matrix.objectValues()) next_cell_id_list = map(lambda x: x.getId(),matrix.objectValues())
LOG('checkSetCellRangeAndCatalog', 0, 'next_cell_id_list = %r, cell_range = %r' % (next_cell_id_list, cell_range))
removed_id_list = filter(lambda x: x not in next_cell_id_list,initial_cell_id_list) removed_id_list = filter(lambda x: x not in next_cell_id_list,initial_cell_id_list)
self.tic() self.tic()
for id in next_cell_id_list: for id in next_cell_id_list:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment