* Replace dict.keys()[0] with list(dict.keys())[0]. On Python 3,
dict.keys() now returns a view which is not indexable.
* tests-py3.txt: add cinder.tests.unit.test_ibm_flashsystem
Partial-Implements: blueprint cinder-python3
Change-Id: Ic77145784acc8c88e77d50a5086019e69d15e6ff
{'vdisk_name': vdisk_name})
return
else:
- host_name = mapping_data.keys()[0]
+ host_name = list(mapping_data.keys())[0]
else:
if host_name not in mapping_data:
LOG.error(_LE('_unmap_vdisk_from_host: No mapping of volume '
cinder.tests.unit.test_hplefthand
cinder.tests.unit.test_huawei_drivers
cinder.tests.unit.test_huawei_drivers_compatibility
+cinder.tests.unit.test_ibm_flashsystem
cinder.tests.unit.test_ibm_flashsystem_iscsi
cinder.tests.unit.test_ibm_xiv_ds8k
cinder.tests.unit.test_ibmnas