Merge "Fix the invocation of novaclient object using named parameters" into feature/falcon-api-framework

This commit is contained in:
Jenkins 2017-03-27 15:21:45 +00:00 committed by Gerrit Code Review
commit 71cd011e75
1 changed files with 4 additions and 4 deletions

View File

@ -65,10 +65,10 @@ class BaseTackerTest(base.BaseTestCase):
@classmethod
def novaclient(cls):
vim_params = cls.get_credentials()
return nova_client.Client('2', vim_params['username'],
vim_params['password'],
vim_params['project_name'],
vim_params['auth_url'])
return nova_client.Client('2', username=vim_params['username'],
password=vim_params['password'],
project_name=vim_params['project_name'],
auth_url=vim_params['auth_url'])
@classmethod
def neutronclient(cls):