diff --git a/tests/integration/utils.py b/tests/integration/utils.py index 7b0a967cf2..ee404f5bf8 100644 --- a/tests/integration/utils.py +++ b/tests/integration/utils.py @@ -9,7 +9,7 @@ def invincible(func): def wrap(): try: return func() - except: + except Exception: pass return wrap