From 25d5e0d1638a83c1aa7516f374b6ba22f56d1179 Mon Sep 17 00:00:00 2001 From: Ken'ichi Ohmichi Date: Mon, 10 Aug 2015 06:28:17 +0000 Subject: [PATCH] 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 --- tempest/scenario/manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tempest/scenario/manager.py b/tempest/scenario/manager.py index 24a73fcc93..da4ebbebbc 100644 --- a/tempest/scenario/manager.py +++ b/tempest/scenario/manager.py @@ -96,7 +96,7 @@ class ScenarioTest(tempest.test.BaseTestCase): 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