diff options
author | boucherv <valentin.boucher@orange.com> | 2016-01-15 16:37:47 +0100 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2016-01-15 16:13:15 +0000 |
commit | f90f81568050962261347d998eb6914d375395f6 (patch) | |
tree | fc2612ed664882eadfe29878d7cb4a2d98396f78 /testcases/functest_utils.py | |
parent | c9f3a6db64e005db7254fabe9ccb2d076ac268b8 (diff) |
bugfix: update cinder quota strange space
Change-Id: I984be5267a3492c4d3b5922a982aed0ad94e7c5b
Signed-off-by: boucherv <valentin.boucher@orange.com>
(cherry picked from commit f4aa5fbebff139543acb891d9d38c9f8fa864cda)
Diffstat (limited to 'testcases/functest_utils.py')
-rw-r--r-- | testcases/functest_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testcases/functest_utils.py b/testcases/functest_utils.py index a104182b5..baab415d9 100644 --- a/testcases/functest_utils.py +++ b/testcases/functest_utils.py @@ -344,7 +344,7 @@ def update_cinder_quota(cinder_client, tenant_id, vols_quota, "gigabytes": gigabytes_quota} try: - quotas_default = cinder_client. quotas.update(tenant_id, + quotas_default = cinder_client.quotas.update(tenant_id, **quotas_values) return True except: |