summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2020-07-24 13:54:05 +0200
committerArmin Rigo <arigo@tunes.org>2020-07-24 13:54:05 +0200
commit920a379d9ad7be9106947f58f248c8fcd50ae9a7 (patch)
tree88cecb26d58332e7ba1ccdb5459a64459cfb8a11
parent102d52ff9669b55dfa12fff2563483948065fa3b (diff)
downloadcffi-920a379d9ad7be9106947f58f248c8fcd50ae9a7.tar.gz
pff I love Python 3
-rw-r--r--testing/cffi1/test_function_args.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/cffi1/test_function_args.py b/testing/cffi1/test_function_args.py
index 202015b..30c6fed 100644
--- a/testing/cffi1/test_function_args.py
+++ b/testing/cffi1/test_function_args.py
@@ -9,8 +9,9 @@ try:
from hypothesis import given, settings, example
from hypothesis import strategies as st
except ImportError as e:
+ e1 = e
def test_types():
- pytest.skip(str(e))
+ pytest.skip(str(e1))
else:
from cffi import FFI