Merge "Port IBM driver to Python 3"
This commit is contained in:
commit
cf3859bb87
@ -388,7 +388,7 @@ class FlashSystemDriver(san.SanDriver):
|
||||
(_('_get_hdr_dic: attribute headers and values do not match.\n '
|
||||
'Headers: %(header)s\n Values: %(row)s.')
|
||||
% {'header': six.text_type(header), 'row': six.text_type(row)}))
|
||||
dic = {a: v for a, v in map(None, attributes, values)}
|
||||
dic = {a: v for a, v in zip(attributes, values)}
|
||||
return dic
|
||||
|
||||
def _get_host_from_connector(self, connector):
|
||||
|
2
tox.ini
2
tox.ini
@ -67,6 +67,8 @@ commands =
|
||||
cinder.tests.unit.test_hplefthand \
|
||||
cinder.tests.unit.test_huawei_drivers \
|
||||
cinder.tests.unit.test_huawei_drivers_compatibility \
|
||||
cinder.tests.unit.test_ibm_flashsystem_iscsi \
|
||||
cinder.tests.unit.test_ibmnas \
|
||||
cinder.tests.unit.test_ibm_xiv_ds8k \
|
||||
cinder.tests.unit.test_infortrend_cli \
|
||||
cinder.tests.unit.test_netapp_nfs \
|
||||
|
Loading…
x
Reference in New Issue
Block a user