Remove unused ignore_error

The argument ignore_error of addCleanup_with_wait() is not used at
all. So this patch removes it for cleanup.

Change-Id: I56634a20d5517f3d6766a4ecbbaadb06ee7426de
This commit is contained in:
Ken'ichi Ohmichi 2015-08-10 06:28:17 +00:00
parent e9bf2d8cbc
commit 25d5e0d163

View File

@ -96,7 +96,7 @@ class ScenarioTest(tempest.test.BaseTestCase):
def addCleanup_with_wait(self, waiter_callable, thing_id, thing_id_param, def addCleanup_with_wait(self, waiter_callable, thing_id, thing_id_param,
cleanup_callable, cleanup_args=None, cleanup_callable, cleanup_args=None,
cleanup_kwargs=None, ignore_error=True): cleanup_kwargs=None):
"""Adds wait for async resource deletion at the end of cleanups """Adds wait for async resource deletion at the end of cleanups
@param waiter_callable: callable to wait for the resource to delete @param waiter_callable: callable to wait for the resource to delete