[Unity] Fix TypeError for test case test_delete_host_wo_lock

Fix TypeError "'NoneType' object is not callable" in test case
test_delete_host_wo_lock

Change-Id: I44650912e88808ce56b347633093e05d5741252c
Closes-bug: #1867619
(cherry picked from commit f88845d756)
This commit is contained in:
Yong Huang 2020-03-16 01:20:52 -04:00
parent 94db15dd3b
commit c5f4e6aff5
1 changed files with 3 additions and 2 deletions

View File

@ -70,7 +70,7 @@ class MockResource(object):
raise ex.UnityResourceNotFoundError()
elif self.get_id() == 'snap_in_use':
raise ex.UnityDeleteAttachedSnapError()
elif self.name == 'empty_host':
elif self.name == 'empty-host':
raise ex.HostDeleteIsCalled()
elif self.get_id() == 'lun_in_replication':
if not force_snap_delete:
@ -649,7 +649,8 @@ class ClientTest(unittest.TestCase):
host = MockResource(name='empty-host')
self.client.host_cache['empty-host'] = host
self.assertRaises(ex.HostDeleteIsCalled,
self.client.delete_host_wo_lock(host))
self.client.delete_host_wo_lock,
host)
def test_delete_host_wo_lock_remove_from_cache(self):
host = MockResource(name='empty-host-in-cache')