From: root Date: Fri, 4 Mar 2016 08:08:58 +0000 (+0530) Subject: Cleaned duplicate dictionary values X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=866d48d74c29df38ed559da8d9cafdcb6d68d3c8;p=openstack-build%2Fcinder-build.git Cleaned duplicate dictionary values Change-Id: I2a94ab9d282599bf3aeffb1bf32da6c43c9887f7 --- diff --git a/cinder/tests/unit/test_gpfs.py b/cinder/tests/unit/test_gpfs.py index e6617373a..e8a151880 100644 --- a/cinder/tests/unit/test_gpfs.py +++ b/cinder/tests/unit/test_gpfs.py @@ -695,7 +695,6 @@ class GPFSDriverTestCase(test.TestCase): 'write_affinity_depth': 'test', 'block_group_factor': 'test', 'write_affinity_failure_group': 'test', - 'test': 'test', 'fstype': 'test', 'fslabel': 'test', 'test': 'test'} diff --git a/cinder/tests/unit/test_huawei_drivers.py b/cinder/tests/unit/test_huawei_drivers.py index c5e212797..5bfce1591 100644 --- a/cinder/tests/unit/test_huawei_drivers.py +++ b/cinder/tests/unit/test_huawei_drivers.py @@ -137,8 +137,8 @@ test_snap = {'name': 'volume-21ec7341-9256-497b-97d9-ef48edcf0635', 'display_description': 'test volume', 'volume_type_id': None, 'provider_location': '11', - 'volume': {"volume_id": '21ec7341-9256-497b-97d9-ef48edcf0635'}, - 'volume': {'provider_location': '12'}, + 'volume': {"volume_id": '21ec7341-9256-497b-97d9-ef48edcf0635', + 'provider_location': '12'}, } test_host = {'host': 'ubuntu001@backend001#OpenStack_Pool', diff --git a/cinder/volume/drivers/ibm/storwize_svc/storwize_svc_common.py b/cinder/volume/drivers/ibm/storwize_svc/storwize_svc_common.py index 34ce1a334..f3cfa3471 100644 --- a/cinder/volume/drivers/ibm/storwize_svc/storwize_svc_common.py +++ b/cinder/volume/drivers/ibm/storwize_svc/storwize_svc_common.py @@ -3007,7 +3007,6 @@ class StorwizeSVCCommonDriver(san.SanDriver, 'total_capacity_gb': total_capacity_gb, 'free_capacity_gb': free_capacity_gb, 'allocated_capacity_gb': allocated_capacity_gb, - 'easytier_support': easy_tier, 'compression_support': self._state['compression_enabled'], 'reserved_percentage': self.configuration.reserved_percentage,