Commit 35919046 authored by Vincent Pelletier's avatar Vincent Pelletier

caucase.{wsgi,test}: Declare functions instead of lambda-in-local

Silences pylint warnings.
parent 1c2e95f7
...@@ -1654,15 +1654,17 @@ class CaucaseTest(TestCase): ...@@ -1654,15 +1654,17 @@ class CaucaseTest(TestCase):
] ]
cau_crt, = cau_ca_list cau_crt, = cau_ca_list
caucase_url = self._caucase_url + '/cau' caucase_url = self._caucase_url + '/cau'
updateCAFile = lambda: CaucaseClient.updateCAFile( def updateCAFile():
url=caucase_url, return CaucaseClient.updateCAFile(
ca_crt_path=self._client_user_ca_crt, url=caucase_url,
) ca_crt_path=self._client_user_ca_crt,
updateCRLFile = lambda: CaucaseClient.updateCRLFile( )
url=caucase_url, def updateCRLFile():
crl_path=self._client_user_crl, return CaucaseClient.updateCRLFile(
ca_list=cau_ca_list, url=caucase_url,
) crl_path=self._client_user_crl,
ca_list=cau_ca_list,
)
self._runClient('--update-user') self._runClient('--update-user')
# CA & CRL were freshly updated, they should not need any update # CA & CRL were freshly updated, they should not need any update
self.assertFalse(updateCAFile()) self.assertFalse(updateCAFile())
......
...@@ -495,17 +495,18 @@ class Application(object): ...@@ -495,17 +495,18 @@ class Application(object):
}, },
}, },
} }
getHALMethodDict = lambda name, title: { def getHALMethodDict(name, title):
'GET': { return {
'do': self.getHAL, 'GET': {
'context_is_routing': True, 'do': self.getHAL,
'cors': CORS_POLICY_ALWAYS_ALLOW, 'context_is_routing': True,
'descriptor': [{ 'cors': CORS_POLICY_ALWAYS_ALLOW,
'name': name, 'descriptor': [{
'title': title, 'name': name,
}], 'title': title,
}, }],
} },
}
self._root_dict = { self._root_dict = {
'method': { 'method': {
'GET': { 'GET': {
......
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