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
diff --git a/tempest/scenario/manager.py b/tempest/scenario/manager.py
index 24a73fc..da4ebbe 100644
--- a/tempest/scenario/manager.py
+++ b/tempest/scenario/manager.py
@@ -96,7 +96,7 @@
def addCleanup_with_wait(self, waiter_callable, thing_id, thing_id_param,
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
@param waiter_callable: callable to wait for the resource to delete