diff --git a/cloudkitty_tempest_plugin/tests/api/base.py b/cloudkitty_tempest_plugin/tests/api/base.py index 1836124..8204b66 100644 --- a/cloudkitty_tempest_plugin/tests/api/base.py +++ b/cloudkitty_tempest_plugin/tests/api/base.py @@ -80,5 +80,6 @@ class BaseRatingTest(tempest.test.BaseTestCase): for item_id in item_ids: try: delete_method(item_id) - except exceptions.NotFound: + except (exceptions.NotFound, + exceptions.UnexpectedResponseCode): pass