Use cinderclient v3 in tests

There's a functional test that's trying to use the cinderclient v2
client, which has been removed in Xena.  Update it to use the v3
client.

Change-Id: I5bad2baf02fd2c7c882d7bbf7110fc644c96319b
This commit is contained in:
Brian Rosmaita 2021-09-01 16:30:58 -04:00
parent b60c79a10f
commit 1494765d25
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ class BrickClientTests(base.BaseTestCase):
def setUp(self):
super(BrickClientTests, self).setUp()
creds = credentials()
self.cinder_client = c_client.Client(2,
self.cinder_client = c_client.Client(3,
creds['username'],
creds['password'],
creds['tenant_name'],