Commit 632b906d authored by Jérome Perrin's avatar Jérome Perrin

remove unused code


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@16472 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 9a410005
...@@ -1787,15 +1787,11 @@ class TestERP5Catalog(ERP5TypeTestCase, LogInterceptor): ...@@ -1787,15 +1787,11 @@ class TestERP5Catalog(ERP5TypeTestCase, LogInterceptor):
message = 'Float Format' message = 'Float Format'
ZopeTestCase._print('\n%s ' % message) ZopeTestCase._print('\n%s ' % message)
LOG('Testing... ',0,message) LOG('Testing... ',0,message)
org_a = self._makeOrganisation(title='org_a')
org_b = self._makeOrganisation(title='org_b') catalog_kw = {'uid': {'query': '2 567.54',
sql_connection = self.getSQLConnection() 'format': '1 234.12',
# Add a method in order to directly put values we want into 'type': 'float'}}
# the catalog. sql_src = self.getCatalogTool()(src__=1, **catalog_kw)
catalog_kw = {'uid':{'query':'2 567.54',
'format':'1 234.12',
'type':'float'}}
sql_src = self.getCatalogTool()(src__=1,**catalog_kw)
self.failUnless("TRUNCATE(catalog.uid,2) = '2567.54'" in sql_src) self.failUnless("TRUNCATE(catalog.uid,2) = '2567.54'" in sql_src)
def test_SearchOnOwner(self): def test_SearchOnOwner(self):
......
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