contrib/python-zstandard/tests/test_roundtrip.py
changeset 30895 c32454d69b85
parent 30435 b86a448a2965
--- a/contrib/python-zstandard/tests/test_roundtrip.py	Thu Feb 09 21:44:32 2017 -0500
+++ b/contrib/python-zstandard/tests/test_roundtrip.py	Tue Feb 07 23:24:47 2017 -0800
@@ -13,10 +13,14 @@
 
 import zstd
 
+from .common import (
+    make_cffi,
+)
 
 compression_levels = strategies.integers(min_value=1, max_value=22)
 
 
+@make_cffi
 class TestRoundTrip(unittest.TestCase):
     @hypothesis.given(strategies.binary(), compression_levels)
     def test_compress_write_to(self, data, level):