[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)
(cherry picked from commit c5f4e6aff5)
This commit is contained in:
Yong Huang 2020-03-16 01:20:52 -04:00
parent 294088cffc
commit 25a43b4872
1 changed files with 3 additions and 2 deletions

View File

@ -65,7 +65,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()
@property
@ -584,7 +584,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')