Fix test_clients_monasca failure

'cafile','certfile','keyfile' and 'insecure'
 need mock override.

Change-Id: I289904ed38f22d4475fe04f2005b795d07cb8d83
Closes-Bug: #1658553
This commit is contained in:
licanwei 2017-01-23 10:57:08 +08:00
parent 926dbc8392
commit 2d7a375338

View File

@ -65,6 +65,10 @@ class TestClients(base.TestCase):
expected = {'username': 'foousername', expected = {'username': 'foousername',
'password': 'foopassword', 'password': 'foopassword',
'auth_url': 'http://server.ip:35357', 'auth_url': 'http://server.ip:35357',
'cafile': None,
'certfile': None,
'keyfile': None,
'insecure': False,
'user_domain_id': 'foouserdomainid', 'user_domain_id': 'foouserdomainid',
'project_domain_id': 'fooprojdomainid'} 'project_domain_id': 'fooprojdomainid'}