from . import config
from .. import util
import inspect
-import sys
import contextlib
try:
return_value = fn(*args, **kw)
- except Exception:
- exc_type, exc_value, exc_traceback = sys.exc_info()
- self._expect_failure(config, exc_type, exc_value, exc_traceback, name=fn.__name__)
+ except Exception as ex:
+ self._expect_failure(config, ex, name=fn.__name__)
else:
self._expect_success(config, name=fn.__name__)
return return_value
- def _expect_failure(self, config, exc_type, exc_value, exc_traceback, name='block'):
+ def _expect_failure(self, config, ex, name='block'):
for fail in self.fails:
if fail(config):
print(("%s failed as expected (%s): %s " % (
- name, fail._as_string(config), str(exc_value))))
+ name, fail._as_string(config), str(ex))))
break
else:
util.raise_from_cause(ex)